# Heroku Django Commands #
# ---------------------- #
# Push local git changes to heroku
git push heroku master
# Login to heroku via toolbelt
heroku login
# View heroku processes
heroku ps
# Create a new superuser for logging into the Admin site
heroku run python manage.py createsuperuser
# Update the database with any changes made locally
heroku run python manage.py syncdb
# Show heroku log output
heroku logs
# To follow the logs...
heroku logs --tail
# Open heroku app in browser
heroku open
# Run bash commands on heroku
heroku run bash