应用程序崩溃,在Django中部署Heroku错误

时间:2019-06-17 23:00:30

标签: python django heroku

我正在Heroku上部署我的第一个Django应用,但出现此错误:

2019-06-17T22:02:04.615398+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=carlosdelgado1.herokuapp.com request_id=210a779e-59ba-46c3-af78-e60215244798 fwd="24.55.161.197" dyno= connect= service= status=503 bytes= protocol=https
2019-06-17T22:34:14.393752+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=carlosdelgado1.herokuapp.com request_id=cc7678e9-c3ec-4b97-9a34-383b6f6f0a4e fwd="24.55.161.197" dyno= connect= service= status=503 bytes= protocol=https

这是我的Procfile中的内容:

web: gunicorn porfolio.wsgi

我在wsgi.py文件中做了这些导入:

import os

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "kloudless.settings")
from django.core.wsgi import get_wsgi_application
from dj_static import Cling

application = Cling(get_wsgi_application())

这是博客项目的github链接: https://github.com/Poucarlos/portfolio

我正在尝试在Heroku中显示我的博客,以便在访问它时看到它

1 个答案:

答案 0 :(得分:0)

状态码前应该有一个错误。您是否可以从头到出现503错误都包括整个Build?可能是任何Django错误,例如模板错误或modulenotfounderror。可以通过识别错误来解决。