如何在Laravel项目中修复500个响应

时间:2019-07-08 20:51:05

标签: php reactjs laravel github composer-php

我克隆了项目 https://github.com/SagarMaheshwary/laravel-react-beginners.git 跑了 composer install php artisan serve 但是localhost:8000显示500服务器错误,并且在artisan控制台中看不到任何错误日志。我该如何解决这个问题?

我正在使用MacOS。

1 个答案:

答案 0 :(得分:1)

  1. 克隆github存储库:
git clone https://github.com/SagarMaheshwary/laravel-react-beginners.git
  1. 转到项目目录:
cd laravel-react-beginners
  1. 安装项目依赖项:
composer install
  1. .env.example复制到.env或简单地重命名:

如果是Linux:

cp .env.example .env

如果是Windows:

copy .env.example .env
  1. 创建应用程序密钥:
php artisan key:generate
  1. 启动laravel服务器:
php artisan serve