Can't Deploy To Heroku In Djangogirls Tutorial
I am following this DjangoGirls tutorial: http://tutorial.djangogirls.org/en/deploy/README.html When I try and open my app's /admin page, since the tutorial states: 'Since we only
Solution 1:
If you project folder inside the root then you have to give exact path so gunicorn will server better ..:)
like web: gunicorn --pythonpath app app.wsgi
for more info pythonpath
Solution 2:
The problem is in your Procfile. The instructions say to do:
web: gunicorn mysite.wsgi
but you have put "djangogirls" instead of "mysite". As you explained in the comments, your project is actually called "mysite", and "djangogirls" is simply the name of the containing folder.
Post a Comment for "Can't Deploy To Heroku In Djangogirls Tutorial"