H14 error in heroku - “no web processes running”

后端 未结 6 1006
傲寒
傲寒 2020-12-05 12:42

error H14 happen while deploying to heroku this is my procfile:

web: gunicorn -w 4 -b 0.0.0.0:$PORT -k gevent main:app

log on heroku:

6条回答
  •  再見小時候
    2020-12-05 13:26

    Before this command:

    heroku ps:scale web=1
    

    I had to remove and add buildpacks again and empty commit it and redeploy it to heroku.

    heroku buildpacks:clear
    heroku buildpacks:add --index heroku/python
    

提交回复
热议问题