A Django web app that says "Hello World!", deployed on Heroku.
As an example of how to build a new Django app and deploy it on Heroku.
Corresponding blog posts:-
- Building a Django App and Deploying It on Heroku. Corresponds to release v1.0.
- Adding Google Analytics to a Django App. Corresponds to release v1.1.
- Adding a Database to a Django App. Corresponds to release v1.2.
- Using Bootstrap to Style a Django App. Corresponds to release v1.3.
pip install -r requirements
python manage.py runserver
The app is running on http://localhost:8000/
See corresponding blog post.