Source for the Ordo documentation site, served at docs.ordo.ephyrasoftware.com.
This site is built with Astro and Starlight, and deployed by Netlify on every push to main.
npm install
npm run devThe dev server runs at http://localhost:4321.
To produce a production build:
npm run buildThe output is written to dist/.
src/content/docs/
├── index.mdx # Landing page
├── getting-started.mdx
├── concepts.mdx
├── reference.mdx
└── architecture.mdx
The sidebar is configured in astro.config.mjs. As subpages are added under each section, convert that section's sidebar entry from a single link to a group with autogenerate: { directory: '<section>' } (or hand-listed items).
Spotted a typo, a confusing page, or a missing detail? See CONTRIBUTING.md. Small fixes can go straight to a pull request; larger changes start with an issue.