heroku django code example
Example 1: heroku django procfile
web: gunicorn myproject.wsgi
Example 2: heroku how to access config vars django
from boto.s3.connection import S3Connection
s3 = S3Connection(os.environ['S3_KEY'], os.environ['S3_SECRET'])
Example 3: how to deploy to heroku djangorest framework app
heroku login
You will prompt to provide heroku credentials(Email and password), once you have authenticated you can access both heroku and git commands.