Repository setup
Where to edit website content, dashboard framing and mock fixtures in VENV.
Start locally
Use Docker as the default local environment:
Terminal
docker compose up --build
For a production-like static build:
Terminal
docker compose --profile prod build prod
docker compose --profile prod up prod
Where content lives
content/contains website-facing content such as the homepage, pricing, docs and release note framing.app/pages/dashboard/**contains the copy around the dashboard shell.server/api/*.tscontains mock fixtures that support the current frame without pretending to be real backend data.README.mdexplains the Docker workflow and production setup.
Editing order
- Start with the content outline and page roles.
- Update website copy in
content/. - Align dashboard framing in
app/pages/and related components. - Only then replace mock fixtures with real API-backed data.