- Python >=3.10
- Poetry
- Install Python dependencies with poetry
poetry install- Set up the database
poetry run python manage.py migrate- Start the API server
poetry run python manage.py runserverIf you modify any database models (models.py), you'll need to run the following to update the database:
poetry run python manage.py makemigrations
poetry run python manage.py migratepoetry run mypy
poetry run black .