Skip to content Skip to sidebar Skip to footer

Errors In Terminal When Deploying To Heroku

I''m brand new to all this stuff and I am trying to deploy just a simple website using python to heroku. I get the following error: at=error code=H10 desc='App crashed' method=GET

Solution 1:

Your Procfile is incorrect.

You have something like

web: gunicorn hello:app

You should replace hello by the name of your app


Post a Comment for "Errors In Terminal When Deploying To Heroku"