Local Runbook
Start Infrastructure
powershell
docker compose -f infra\docker-compose.yml up -dStart Backend
powershell
.\.venv\Scripts\Activate.ps1
cd backend
..\.venv\Scripts\python -m uvicorn app.main:appStart Frontend Dashboard
powershell
cd frontend
npm install
npm run devStart Knowledge Site Locally
powershell
cd site
npm install
npm run docs:devRun Tests
powershell
.\.venv\Scripts\python -m pytest
cd frontend
npm run build
cd ..\site
npm run docs:build