它成功推送,但是一旦我进入网站,它就无法运行。我的全部错误是here。
我的Procfile是
web: gunicorn p2plending.p2plending.wsgi:app
我的requirements.txt是
psycopg2==2.7.6.1
djangorestframework==3.9.2
Pillow==6.0.0
requests==2.21.0
factory_boy==2.11.1
django-filter==2.1.0
django-rest-auth==0.9.5
django-heroku
gunicorn
答案 0 :(得分:0)
请安装
pip install gunicorn == 19.9.0
答案 1 :(得分:-1)
更新您的设置。py
ALLOWED_HOSTS = ['*']
谢谢
答案 2 :(得分:-1)
OR
打开Procfile并添加以下行
web:gunicorn projectname.wsgi --log-file-
谢谢