Documentation
If you want to improve docs, guides, wording, examples, or structure, this page is for you.
Docs Project Setup
Section titled “Docs Project Setup”The docs site is an Astro + Starlight project located at:
<root>/docs/app-docsFrom the repository root, switch into the docs project first:
cd docs/app-docsInstall dependencies:
npm installStart local development server:
npm run devBuild the site:
npm run buildPreview the production build locally:
npm run previewWhere To Edit
Section titled “Where To Edit”Docs content lives under:
src/content/docs/You can contribute by:
- Fixing typos, grammar, and clarity.
- Adding missing setup or troubleshooting details.
- Improving step-by-step guides.
- Updating screenshots and examples when behavior changes.
Pull Request Checklist
Section titled “Pull Request Checklist”Before opening your PR:
- Ensure your pages render correctly in
npm run dev. - Run
npm run buildto make sure the site compiles. - Add a clear PR description of what changed and why.
Small and focused documentation pull requests are always welcome.