Infrastructure Docs

How this site works

How these docs are written, built, and deployed

This site is a Fumadocs static site. All content lives as Markdown/MDX files under content/docs/ in the SpaceCore-Team/SCINFR_DOCS repository.

Publishing flow

  1. A page is added or edited under content/docs/ and pushed to the main branch.
  2. GitHub Actions builds the static site and publishes the output to the gh-pages branch.
  3. The server pulls gh-pages once a minute and Caddy serves it at docs.infrastructure.co-re.space.

Changes go live roughly 1–2 minutes after a push (build time + the one-minute pull).

Adding a page

Create an .mdx file under content/docs/ with frontmatter:

---
title: My Page
description: Short summary shown in listings and search
---

Your content here.

Use a meta.json file inside a folder to control the order and labels of its pages:

{
  "pages": ["index", "how-it-works"]
}

On this page