Contributing to These Docs
This documentation site is built with Astro Starlight and deployed to GitHub Pages. Here’s how to contribute.
Adding a new page
- Create a new
.mdor.mdxfile indocs/src/content/docs/under the appropriate directory (e.g.,integrations/,guides/). - Add frontmatter at the top of the file with at least a
titleanddescription. - If needed, add the page to the sidebar configuration in
docs/astro.config.mjs.
Example frontmatter
---title: My New Guidedescription: A short description of what this guide covers.sidebar: order: 4---Running locally
cd docsnpm installnpm run devThe site will be available at http://localhost:4321/docs/.
Building for production
npm run buildThe output will be in docs/dist/.
Using MDX components
When using .mdx files, you can import Starlight’s built-in components:
import { Aside, Steps, Tabs, TabItem, Card, CardGrid } from '@astrojs/starlight/components';These give you callouts, step-by-step lists, tabbed code examples, and card grids — no custom code needed.