Heroku上的Delpoying Project django

时间:2019-12-22 06:50:11

标签: python django heroku

我的项目djandgo遇到问题,当我推动项目然后尝试打开它时,我会发现这种按摩

enter image description here

然后当我写heroku login --t

此消息

enter image description here

1 个答案:

答案 0 :(得分:0)

您必须确保Procfile包含指向wsgi.py文件的行。

Procfile:

web: gunicorn project_name.wsgi

您的文件结构(包含wsgi.py和Procfile的文件结构的一部分):

.
├── Procfile
└── project_name
    └── wsgi.py