- Python 3.4
- virtualenvwrapper
- autoenv
Follow the instructions below to set up the development environment.
Set up the Heroku application Git remotes:
$ git remote add production git@heroku.com:squash-protector.git
Create a new virtualenv:
$ mkvirtualenv --python=$(which python3.4) squash-protector
Make the virtualenv activate automagically when traversing inside the project directory:
$ echo -e "workon squash-protector\n" > .env
Create databases for development and testing:
$ createdb squash-protector
Create database tables:
$ alembic upgrade head
Finally, start the development server:
$ python manage.py runserver