Reputation: 111
It pushes successfully, but it doesn't run once I go to the website. My full error is here.
My Procfile is
web: gunicorn foo.foo.wsgi:app
My requirements.txt is
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
Upvotes: 0
Views: 508
Reputation: 51
OR
Open the Procfile and add the below line
web: gunicorn projectname.wsgi --log-file -
thank you
Upvotes: 0