从现在开始,我将在学习Laravel框架时分享我的课程。我要写的大多数注释是我在脚本上进行的命令和脚本修改,当我再次重复该过程时,它们可能会派上用场。
您可能需要使用它。1.开始安装Laravel
#没有Docker
composer create-project laravel/laravel example-app
cd example-app
php artisan serve
#与Docker(使用Laravel帆)
curl -s "https://laravel.build/example-app" | bash
# -- OR -- install mysql, redis & devcontainer too
curl -s "https://laravel.build/example-app?with=mysql,redis&devcontainer" | bash
cd example-app
./vendor/bin/sail up
2.设置Laravel
使用配置文件
我设置了我的时区和config/app.php
文件中的本地
使用环境文件
我在.env
文件中设置了我的网站或数据库配置文件