You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
django-admin startproject --extension=py,md,env --template=https://github.com/inspired-solutions/django-starter/archive/PROJECT_BRANCH.zip PROJECT_NAME # Create project from template
cd PROJECT_NAME
pip install pip-tools
pip-compile -r requirements/develop.in -o requirements-DATE.develop # Generates a requirements file with the latest version of the dependencies up to the current date
pip-sync requirements-DATE.develop # Synchronize the dependencies and versions of your virtual environment with those of the generated file
Open .env and populate variables
python manage.py runserver
Run coverage and generate html coverage code report
coverage run --source='.' manage.py test && coverage html