我克隆了项目https://github.com/SagarMaheshwary/laravel-react-beginners.git并运行了composer install
php artisan serve
,但是localhost:8000显示了500个服务器错误,而且我在手工控制台中看不到任何错误日志。我怎样才能解决这个问题?
我正在使用MacOS。
发布于 2019-07-08 21:16:40
git clone https://github.com/SagarMaheshwary/laravel-react-beginners.git
cd laravel-react-beginners
composer install
.env.example
复制到.env
或简单地重命名它:如果linux:
cp .env.example .env
如果窗口:
copy .env.example .env
php artisan key:generate
php artisan serve
https://stackoverflow.com/questions/56942397
复制相似问题