Python 应用程序崩溃,Django中出现部署错误

Python 应用程序崩溃,Django中出现部署错误,python,django,heroku,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=

我正在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
这是我的程序文件中的内容:

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链接:


我试图在Heroku中显示我的博客,以便在访问它时查看它

状态代码之前应该有一个错误。你能从一开始就包含整个构建,直到你得到503错误吗?它可能是任何django错误,如模板错误或modulenotfounderror。可以通过识别错误来修复

状态代码之前应该有一个错误。你能从一开始就包含整个构建,直到你得到503错误吗?它可能是任何django错误,如模板错误或modulenotfounderror。可以通过识别错误来修复

你指的是整个构建,你指的是上面代码段中的全部代码,抱歉响应太晚了你指的是整个构建,你指的是上面代码段中的全部代码,抱歉响应太晚了