Development:
python -m piptools compile --upgrade --allow-unsafe --generate-hashes requirements/production.in requirements/develop.in --output-file requirements/develop.txt
Production:
python -m piptools compile --upgrade --allow-unsafe --generate-hashes requirements/production.in --output-file requirements/production.txt
python -m piptools sync requirements/develop.txt
python -m pip install -e .
python manage.py migrate
python manage.py runserver 0.0.0.0:8000