错误H14在部署到heroku时发生这是我的procfile:
web: gunicorn -w 4 -b 0.0.0.0:$PORT -k gevent main:app
登录heroku:
2017-01-23T10:42:58.904480+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=meetcapstone.herokuapp.com request_id=df88efb5-a81a-4ac0-86dc-4e03d71266bb fwd="81.218.117.137" dyno= connect= service= status=503 bytes= 2017-01-23T10:42:59.009135+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/favicon.ico" host=meetcapstone.herokuapp.com request_id=21cea981-36b0-4410-891f-548bbc29f0ee fwd="81.218.117.137" dyno= connect= service= status=503 bytes=
要求:
Flask==0.11.1 passlib==1.7.0 SQLAlchemy==1.1.5 Werkzeug==0.11.15 gunicorn==19.0.0 gevent==1.2.1
rdegges.. 49
这里的问题是你没有运行任何网络动态.您可以通过以下方式告诉Heroku:
$ heroku ps:scale web=1
这将迫使Heroku旋转web dyno,从而执行你的gunicorn命令.
这里的问题是你没有运行任何网络动态.您可以通过以下方式告诉Heroku:
$ heroku ps:scale web=1
这将迫使Heroku旋转web dyno,从而执行你的gunicorn命令.