0

I have created a Flask-CRUD web application.

My app build is successful but is not deployed when I check the logs I get

`H14 No web processes running error`

I checked the dyno status through command heroku ps and I got result **Eco dyno hours quota remaining this month: 550h 0m** (100%) Eco dyno usage for this app: 0h 0m (0%)

My procfile is also named as Procfile (capital P)

web: gunicorn app: app

How can I resolve this my procfile is named as Procfile and I have also tried removing and adding back python buildpack

Manvi Jha
  • 1
  • 2

1 Answers1

0

I think that the issue comes from the extra space in the Procfile after the ::

web: gunicorn app:app
Sébastien P.
  • 526
  • 3
  • 14
  • I tried out that too, but it did not work – Manvi Jha Feb 08 '23 at 20:35
  • @ManviJha are you sure about the name of the app ? it is really `app` ? What's the output of `heroku apps` ? – Sébastien P. Feb 09 '23 at 08:28
  • Yes, my app name is 'app' and the .py file is also `app`. And the output of `heroku apps` also throws application error – Manvi Jha Feb 09 '23 at 18:33
  • could you share the error ? – Sébastien P. Feb 10 '23 at 13:20
  • `Build succeeded 2023-02-10T17:58:50.421311+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=dpsrecipeapp.herokuapp.com request_id=b1a52134-b9bf-424d-8a3c-dd0dab22b03e fwd="47.156.146.220" dyno= connect= service= status=503 bytes= protocol=https 2023-02-10T17:58:50.634271+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=dpsrecipeapp.herokuapp.com request_id=9ba89cd1-dea4-4825-b3a9-f71b0744d4bc fwd="47.156.146.220" dyno= connect= service= status=503 bytes= protocol=https` – Manvi Jha Feb 10 '23 at 17:59