Heroku Trouble at the End
I get all the way to the end with minimal issues. I even get the "Hello, world" to display locally. However, when I try to get it working on Heroku working it just says that I have a "Server Error" with the description "The website encountered an error while retrieving http://sleepy-badlands-9508.herokuapp.com/. It may be down for maintenance or configured incorrectly."
I did the following to git and heroku prior:
$ git add . $ git commit -am "..." $ git push heroku master
Am I doing something wrong here?
Answers
I've been struggling with the same problem today and I think I've found a solution. Try adding "sleepy-badlands-9508.herokuapp.com" to your ALLOWED_HOSTS in base.py file. I did the same for my app (using its name) and after that it worked fine.
Also just to clarify I checked "heroku logs" as well and no errors popped up
did you do " heroku run python manage.py syncdb "