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
- A page is added or edited under
content/docs/and pushed to themainbranch. - GitHub Actions builds the static site and publishes the output to the
gh-pagesbranch. - The server pulls
gh-pagesonce a minute and Caddy serves it atdocs.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"]
}