api/ Python API (FastAPI, Python 3.13)
client/ Next.js frontend (React, TypeScript, USWDS)
iac/ Infrastructure as Code
-
Install the following using asdf:
asdf plugin add python asdf install python 3.13.12 asdf set python 3.13.12 asdf plugin add nodejs asdf install nodejs 25.8.2 asdf set nodejs 25.8.2 asdf plugin add uv asdf install uv 0.11.2 asdf set uv 0.11.2 asdf plugin add just asdf install just 1.48.1 asdf set just 1.48.1 asdf reshim npm install -g pnpm@latest-10
-
Docker (for containerized linting and builds)
cd api
export UV_PYTHON=$(asdf which python) # use the python from asdf
just install # Install Python dependencies
just dev # Run API with hot reload (localhost:8000)cd client
pnpm install # Install Node dependencies
pnpm dev # Run dev serverjust test # Run tests
just test-coverage # Run tests with coverage
just lint # Run all linting (spectral + ruff + pyright)
just format # Format code
just build # Build production Docker imagepnpm test # Run tests (vitest)
pnpm lint # Lint
pnpm storybook # Run Storybook
pnpm build # Production build