See docs/PREREQUISITES.md
mkdir ~/django-heroku && cd $_
django-admin.py startproject mysite
cd mysite
python manage.py runserver
- Keep the root dir in a variable
- Set sqlite3 as db driver and provide the path to db file
- Set media root path
- Set templates path
Sync the database
python manage.py syncdb
python manage.py startapp core
Add the core app to the list of installed apps. Add a hello-world view for the root url.