如何解决"应用程序错误"在Heroku(Python)

时间:2016-08-29 15:16:08

标签: python django heroku github

我在Python-Django框架中创建了一个项目。我在heroku部署项目。

当我试图在终端上使用heroku open命令时,我得到了

Application Error

An error occurred in the application and your page could not be served. Please try again in a few moments.

If you are the application owner, check your logs for details.

请帮我解决这个错误。

1 个答案:

答案 0 :(得分:1)

根据您的其他问题判断,这似乎可能是重复的,我建议您仔细按照以下步骤操作:

https://devcenter.heroku.com/articles/django-app-configuration#the-basics

具体来说,您需要在requirements.txt中包含procfile +正确的应用,首先使用pip install安装它们并使用pip freeze > requirements.txt

捕获它们

从您发布的日志中,您似乎应该从gunicorn开始,但它可能不是您唯一缺少的应用。