Skip to content

Guides

Step-by-step guides for common development and operational tasks.

Development Guides

Stakeholder Workflows

Analytics & Monitoring

Quick Reference

Run Tests

cd backend
pytest
cd frontend
npm run test
cd frontend
npm run test:e2e

Build for Production

pip install -r requirements.txt
python manage.py collectstatic --no-input
python manage.py migrate
npm ci
npm run build

Documentation

cd docs && mkdocs serve   # http://localhost:8000
cd frontend && npm run storybook   # http://localhost:6006
cd frontend && npm run docs:typedoc