notice no procfile using 'web heroku-php-apache2' when doing deploy of project laravel in heroku

0

Best regards, I am trying to upload one of my projects to heroku following the documentation, I receive the following error when opening the application.

I understand that this happens, because a file called Procfile must be created in the root of the project, which I have with the web code: vendor / bin / heroku-php-apache2 public /

At the moment of committing and pushing the project to heroku, the following news appears:

Any idea why this happens ?, if I have the Procfile file created correctly and added to the commit before doing the push to heroku.

    
asked by Kevin Burbano 24.12.2018 в 16:25
source

1 answer

0

In response to your question as to why this Forbidden error happens, I inform you that it may be a permissions issue in the storage folder. So you can change the permissions of the folder:

chmod -R 775 app/storage

Greetings.

    
answered by 26.12.2018 в 11:10