Heroku H10 issue
I get the Error: at=error code=H10 desc="App crashed" method=GET path="/" host=quiz-iu.herokuapp.com request_id=9ee6412c-b248-4eeb-8eba-066f07b38a4f fwd="93.201.118.59" dyno= connect= service= status=503 bytes= protocol=https 2022-12-19T17:47:36.743985+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=quiz-iu.herokuapp.com request_id=071363bb-8ce2-4eed-bdc5-93cd3b39581f fwd="93.201.118.59" dyno= connect= service= status=503 bytes= protocol=https
And if i set into the consul : heroku run rails console I get: bash: line 1: rails: command not found Can please someone help to fix this issue
I try to devolope a app but get the a error
A few things to confirm:
- Make sure that
git
is initialized in the same directory where themanage.py
file is located. - Make sure that the
Procfile
is written with the capitalP
and the rest in small letters, as written in this sentence. - Make sure that the
Procfile
,requirements.txt
, andruntime.txt
(if you have one) are in the same directory as themanage.py
file. - Copy-paste the following line as it is in your
Procfile
and replacedjangoheroku
with the name of your Django project.
web: gunicorn djangoheroku.wsgi --log-file -
Note: Don't forget to replace
djangoheroku
with the name of your Django project.