david
david

Reputation: 6785

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 path=/ host=arcane-lake-2908.herokuapp.com fwd="71.20.1.73" dyno= connect= service= status=503 bytes=
 2013-09-03T09:47:58.419844+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path=/favicon.ico host=arcane-lake-2908.herokuapp.com fwd="71.20.1.73" dyno=   connect= service= status=503 bytes=

I also see something that sees "reason worker failed to boot".

The last 2 commands I ran were: Scale to web=1 heroku open

Upvotes: 0

Views: 207

Answers (1)

njzk2
njzk2

Reputation: 39397

Your Procfile is incorrect.

You have something like

web: gunicorn hello:app

You should replace hello by the name of your app

Upvotes: 2

Related Questions