Documentation site for the Quiote PHP framework, built with Astro Starlight.
Live at: https://quioteframework.github.io
npm install
npm run dev
Open http://localhost:4321.
Documentation lives in src/content/docs/. Each .md or .mdx file maps directly to a URL:
| File | URL |
|---|---|
src/content/docs/getting-started/installation.md |
/getting-started/installation/ |
src/content/docs/guides/routing.md |
/guides/routing/ |
src/content/docs/reference/action.md |
/reference/action/ |
Every file needs frontmatter with at least title and description:
---
title: Your Page Title
description: One sentence describing this page.
---
Page content here.
Pushing to main triggers the GitHub Actions workflow at .github/workflows/deploy.yml, which builds the site and deploys to GitHub Pages automatically.
Make sure the repo has GitHub Actions selected as the Pages source under Settings → Pages.
See CONTRIBUTING.md in the main Quiote repository.