laravel deployment failed on heroku
问题 Some months ago I succeeded in deploying a Laravel 5.5 application on Heroku. I tried to do the same today with a Laravel 6.12 application, and I have a lot of problems. I added the .env vars, I added the Procfile . But I have this error: Did something change between Laravel 5.5 and 6 for deploying to Heroku? How can I get this working? My post-install-cmd is: "post-install-cmd": [ "php artisan cache:clear", "php artisan config:cache", "chmod -R 777 storage", "php artisan passport:keys" ] 回答1