Start local services with Docker Compose:
docker-compose up -dcd src/api/db
alembic upgrade headIf you make any changes to src/api/db/models.py to modify tables, do this:
cd src/api/db
alembic revision --autogenerate -m "describe changes"
alembic upgrade headRun all tests:
uv run pytest src/api/tests/Run tests with verbose output and coverage report:
uv run pytest src/api/tests/ -v --tb=short --cov=src/api --cov-report=term-missing