# pyenv install
python3 -m venv venv
source venv/bin/activate
python manage.py migrate
python manage.py loaddata fixtures/01_base_fixtures
python manage.py runserver
# log in into http://localhost:8000/admin username:admin password:admin
coverage run --source='.' manage.py test
curl http://localhost:8000/user_contracts_information
curl http://localhost:8000/contracts_in_2020_not_recurrent
python manage.py dumpdata --natural-primary \
--natural-foreign \
--indent 4 \
--exclude auth.permission \
--exclude contenttypes \
--exclude sessions \
--exclude admin \
-o fixtures/01_base_fixtures.json