See the first product introduction
After performing a git clone
, you will need to create a database for Laravel to connect to and configure the .env
file with the appropriate information.
You must have Python installed, along with the following required packages:
Run the following commands to complete the configuration of the Laravel server:
composer update
php artisan migrate
php artisan key:generate
php artisan storage:link
npm install
npm run build
Once the local MySQL server is running, you can start the Laravel server with the following commands:
npm run dev
php artisan serve
php artisan queue:work --timeout=36000
If you wish to run the server on a network instead of local development, use the following command with the necessary adjustments:
php artisan serve --host 0.0.0.0 --port=8000