Create a virtualenv (use virtualenvwrapper):
$ mkvirtualenv mathias -p python3Install development requirements:
make requirements-developmentCreate database tables:
make migrateCreate superuser:
make superuserRun the project:
make runTo run the test suite, execute:
make testTo show coverage details (in HTML), use:
make test html