Путь: config/.env. См. config/.env.example
Допустимые значения:
- development
- local
- production
Для добавления дополнительных конфигураций см. server/settings/init.py
Предварительно добавить файл server/settings/environments/local.py. Используется для переопределения настройки локально
export DJANGO_ENV=development && make start
export DJANGO_ENV=local && make start
make check
Проверки:
- flake8, см. https://github.com/wemake-services/wemake-python-styleguide
- mypy - https://mypy.readthedocs.io/en/stable/
- pytest - https://docs.pytest.org/en/7.2.x/
- django-check - https://docs.djangoproject.com/en/4.1/ref/django-admin/#check
- migrations-check - https://docs.djangoproject.com/en/4.1/ref/django-admin/#makemigrations
- safety - https://docs.pyup.io/docs/getting-started-with-safety-cli
- poetry check - https://python-poetry.org/docs/cli/#check
- pip check - https://pip.pypa.io/en/stable/cli/pip_check/