1
0
Fork
You've already forked stagex-docs
0
forked from stagex/docs
This site was produced with AI assistance in less than two days. It was done with good intentions, but it shouldn't have been done this way. A shared reality check — and a reminder to verify before you trust. https://stagex.silvertides.net
  • Python 69.9%
  • HTML 22.6%
  • Makefile 5.3%
  • Dockerfile 2.2%
ConYel 57c31a1a8a
All checks were successful
Deploy Codeberg Pages / deploy-codeberg (push) Successful in 44s
Deploy Codeberg Pages / deploy-custom (push) Successful in 41s
fix: correct GO111MODULE env var name (3 ones, not 2)
2026年06月25日 08:27:36 +02:00
.forgejo/workflows docs: fix site infrastructure issues 2026年05月21日 22:43:34 +02:00
docs fix: correct GO111MODULE env var name (3 ones, not 2) 2026年06月25日 08:27:36 +02:00
drafts add one line descriptions to workstation, contributor 2026年05月05日 05:59:15 -04:00
overrides docs: fix site infrastructure issues 2026年05月21日 22:43:34 +02:00
scripts feat: migrate domain 2026年05月19日 11:50:36 +02:00
.domains fix: redirect old codeberg.page URL to custom domain, add missing OG tags 2026年05月21日 20:04:26 +02:00
.gitignore deployment: test 2026年05月19日 10:13:54 +02:00
_headers docs: fix site infrastructure issues 2026年05月21日 22:43:34 +02:00
_redirects fix:redirect 2026年05月21日 22:15:25 +02:00
Dockerfile feat: Complete documentation suite for StageX covering all four Diátaxis quadrants 2026年05月17日 19:08:35 +02:00
LICENSE feat: Complete documentation suite for StageX covering all four Diátaxis quadrants 2026年05月17日 19:08:35 +02:00
Makefile feat: migrate domain 2026年05月19日 11:50:36 +02:00
README.md docs: disclaimer wording, FAQ , HowTo, README 2026年05月20日 21:22:19 +02:00
zensical.toml docs: fix site infrastructure issues 2026年05月21日 22:43:34 +02:00

StageX Documentation

Published at: stagex.silvertides.net

This repository contains the source for the StageX documentation site, built with Zensical.

StageX is a minimal, fully bootstrapped, deterministic, multi-party-signed Linux distribution for verifiable infrastructure.

The site is built with Zensical.

Repository Layout

  • docs/ contains published documentation pages.
  • drafts/ contains unpublished source material and earlier drafts kept for reference.
  • overrides/ contains Zensical theme overrides.
  • zensical.toml contains the site configuration.

Development

Prerequisites

  • Docker

Run Locally

make dev

The site will be available at http://localhost:5000. Changes to docs/, overrides/, and zensical.toml are mounted as volumes and will be reflected automatically.

Make Commands

# Build the local development image
make build
# Start the local development server
make dev
# Stop the local development server
make down
# Build the production image
make build-prod
# Build the static site into _site/
make _site
# Remove generated local artifacts
make clean
# Remove generated artifacts and local Docker images
make fullclean