Create a virtualenv (use virtualenvwrapper
):
mkvirtualenv hub
Install environment to development:
make install-dev
Setup the environment vars or create a file django/hub/settings.ini
with the content:
[settings]
DEBUG=true
CHANGELOG_API_TOKEN=
DEFAULT_FROM_EMAIL=your-email@example.com
AWS_SES_ACCESS_KEY_ID=
AWS_SES_SECRET_ACCESS_KEY=
SECRET_KEY=SOME SECRET
Run the project:
make runserver
To run the test suite, execute:
make test
To show coverage details (in HTML), use:
make test html