$ cd scripts
$ fab
Additional information can be found by running $ fab --list
From the commit logs:
This is a fabric script that can be used to create and initialize a virtual environment. In order for the script to work, virtualenv, virtualenvwrapper, and fabric must be installed.
$ pip install -U virtualenv virtualenvwrapper fabric
$ heroku create --stack cedar --buildpack [email protected]:cbslocal/heroku-buildpack-python.git [name]
$ heroku create --stack cedar --buildpack [email protected]:cbslocal/heroku-buildpack-python.git --remote staging [name-staging]
$ heroku config:add DJANGO_DEBUG=True --remote staging
Production
$ git push heroku master
Staging
$ git push staging develop:master
For further reading, see Managing Multiple Environemnts for an App
Be sure to set an environment variable:
export DJANGO_SETTINGS_MODULE=quipy.settings.local