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/*.ts contains mock fixtures that support the current frame without pretending to be real backend data.
  • README.md explains the Docker workflow and production setup.

Editing order

  1. Start with the content outline and page roles.
  2. Update website copy in content/.
  3. Align dashboard framing in app/pages/ and related components.
  4. Only then replace mock fixtures with real API-backed data.