i克隆项目https://github.com/sagarmaheshwary/laravel-react-beginners.git并跑了 composer install
php artisan serve
但是Localhost:8000显示了500个服务器错误,我看不到工匠控制台中的任何错误日志。我该如何解决此问题?
我正在使用macos。
- 克隆github repo:
git clone https://github.com/SagarMaheshwary/laravel-react-beginners.git
- 去项目目录:
cd laravel-react-beginners
- 安装项目依赖项:
composer install
- 将
.env.example
复制到.env
或Simly重命名:
如果Linux:
cp .env.example .env
如果Windows:
copy .env.example .env
- 创建应用程序密钥:
php artisan key:generate
- 启动Laravel服务器:
php artisan serve