Skip to content

Guides

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

Development Guides

Analytics & Monitoring

Quick Reference

Run Tests

cd backend
python manage.py test
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

# Storybook
cd frontend && npm run storybook

# TypeDoc
cd frontend && npm run docs:typedoc

# MkDocs
cd docs && mkdocs serve