在Heroku上部署Flask应用程序 - web1:崩溃了

时间:2014-07-12 07:25:56

标签: python heroku flask

我正在尝试将Flask应用程序部署到Heroku,但我收到了这个错误:

(venv)rgb:~/flaskapp/app$ heroku ps
=== web (1X): `gunicorn app:app`
web.1: crashed 2014/07/09 21:39:45 (~ 10s ago)

它在本地工作“工头开始”,但在Heroku上推动网络崩溃:

(venv)rgb@rgb-K45VD:~/flaskapp/app$ foreman start 
21:41:01 web.1  | started with pid 3269

这是以下heroku日志: (venv)rgb @ rgb-K45VD:〜/ flaskapp / app $ heroku logs

2014-07-09T18:38:42.934053+00:00 heroku[api]: Enable Logplex by raghibmidhat@gmail.com
2014-07-09T18:38:42.934053+00:00 heroku[api]: Release v2 created by raghibmidhat@gmail.com
2014-07-09T18:38:57+00:00 heroku[slug-compiler]: Slug compilation started
2014-07-09T18:39:31+00:00 heroku[slug-compiler]: Slug compilation finished
2014-07-09T18:39:30.976889+00:00 heroku[api]: Scale to web=1 by raghibmidhat@gmail.com
2014-07-09T18:39:31.123082+00:00 heroku[api]: Deploy ea4c116 by raghibmidhat@gmail.com
2014-07-09T18:39:31.123204+00:00 heroku[api]: Release v3 created by raghibmidhat@gmail.com
2014-07-09T18:39:35.095809+00:00 heroku[web.1]: Starting process with command `gunicorn app:app`
2014-07-09T18:39:38.231874+00:00 heroku[web.1]: State changed from starting to crashed
2014-07-09T18:39:38.232507+00:00 heroku[web.1]: State changed from crashed to starting
2014-07-09T18:39:38.229063+00:00 heroku[web.1]: Process exited with status 3
2014-07-09T18:39:42.092210+00:00 heroku[web.1]: Starting process with command `gunicorn app:app`
2014-07-09T18:39:44.747854+00:00 heroku[web.1]: State changed from starting to up
2014-07-09T18:39:46.210641+00:00 heroku[web.1]: State changed from up to crashed
2014-07-09T18:39:46.180463+00:00 heroku[web.1]: Process exited with status 3
2014-07-09T18:39:50.025372+00:00 heroku[api]: Scale to web=1 by raghibmidhat@gmail.com
2014-07-09T18:41:30.849878+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=flazkeh.herokuapp.com request_id=89f286f6-44ec-4751-91ec-7411857fbd80 fwd="80.223.191.140" dyno= connect= service= status=503 bytes=
2014-07-09T18:41:31.434515+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=flazkeh.herokuapp.com request_id=63c33396-87d9-4b33-89a5-3f2288b707cd fwd="80.223.191.140" dyno= connect= service= status=503 bytes=

这似乎是错误:

2014-07-09T18:41:30.849878+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=flazkeh.herokuapp.com request_id=89f286f6-44ec-4751-91ec-7411857fbd80 fwd="80.223.191.140" dyno= connect= service= status=503 bytes=
2014-07-09T18:41:31.434515+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=flazkeh.herokuapp.com request_id=63c33396-87d9-4b33-89a5-3f2288b707cd fwd="80.223.191.140" dyno= connect= service= status=503 bytes=

这是我的app.py:

https://gist.github.com/rgbm21/fd7cbdd9c110bb876439

非常感谢任何帮助!

2 个答案:

答案 0 :(得分:0)

从表面上看代码,我认为没有任何问题。您是否尝试在自己的机器上运行它?

顺便说一句,代码中有一些东西导致它无法在我的机器上运行:

  • 需要一个环境变量“APP_SETTINGS”(你设置了吗?)
  • 需要有一个models.py模块 - 可能包含BlogPost类。好像GitHub上没有这样的文件?
  • 你安装了flask-sqlalchemy吗?

答案 1 :(得分:0)

确保您将procfile从 web:gunicorn app:app 更改为 web:gunicorn project:app 。 此外,一旦部署到heroku,您将遇到数据库问题。最好的选择是" DROP"数据库并创建一个新的或迁移。 使用命令 heroku日志获取更多信息。