$ git clone [email protected]:GetBlimp/boards-backend.git
$ cd boards-backend/
$ pip install -r requirements.txt
Create an .env
file in the root of the project based on .env.example
.
$ ./manage.py syncdb --noinput
$ ./manage.py migrate apps.users
$ ./manage.py migrate
$ ./manage.py loaddata blimp_boards/users/fixtures/users.json
$ ./manage.py runserver_plus
$ ./manage.py test --configuration=Testing
$ pip install tox
$ tox
$ pip install coverage
$ coverage run --source='.' manage.py test --configuration=Testing
$ coverage report --show-missing --omit='*migrations*'