Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 633 Bytes

File metadata and controls

29 lines (20 loc) · 633 Bytes

Use UV for Python Package Management

When installing Python packages, use uv instead of pip.

Wrong:

pip install djangorestframework

Right:

uv add djangorestframework

Run Django commands with uv run:

uv run python manage.py migrate
uv run python manage.py test

Deployment Environments

Datamailer currently has only a sandbox deployment. There is no Datamailer production environment, so do not describe current work as production deploys or production operations. Production-related docs and issues are future plans unless a human explicitly confirms that production exists.