docs: add canonical IA landing + first-pass core pages

This commit is contained in:
Abhimanyu Saharan
2026-02-11 06:15:54 +00:00
parent c3490630a4
commit f1a8ef074d
12 changed files with 368 additions and 0 deletions

23
docs/03-development.md Normal file
View File

@@ -0,0 +1,23 @@
# Development
This is the contributor-focused dev workflow for the Mission Control repo.
## Prereqs
- Docker + Docker Compose
- Node (for the frontend)
- Python (for the backend)
## Common commands
- See `Makefile` for the canonical targets.
- Self-host stack (dev-ish): follow the [Quickstart](02-quickstart.md).
## Local services
- Postgres is provided by Compose (`compose.yml`).
## Debugging tips
- Backend liveness: `GET /healthz`
- Backend routes live under `/api/v1/*` (see `backend/app/main.py`).
## Next (to flesh out)
- Document the exact backend/frontend dev commands used by maintainers (once finalized).
- Add a “how to run tests” pointer to `docs/testing/README.md`.