Lumen management background system construction practice

1 Download and clone a data

 git clone https://github.com/guozhenyi/lumen-admin-service.git

2 Check the version number through composer

composer -v

3. Install the vendor package through composer

composer install

4 Copy the configuration file .env.example to .env and change it to your own local configuration 

php -r "copy('.env.example', '.env');"

 5 Generate the app_key of the project and fill in the .env

php artisan key:generate

 

 6 Finally, modify the local mysql and redis in env, as well as vhost, and you can start the project

Guess you like

Origin blog.csdn.net/qq_33665793/article/details/130424234