stagex/docs
15
2
Fork
You've already forked docs
3
No description https://docs.stagex.tools
  • HTML 82.7%
  • Makefile 11.4%
  • Dockerfile 5.9%
Ksenia Lesko 8706da88fa
All checks were successful
Deploy Codeberg Pages / build (push) Successful in 53s
set default theme to dark, moved comparison to an earilier section
2026年05月17日 19:40:11 -04:00
.forgejo/workflows forge token 2026年05月12日 21:20:50 +02:00
docs set default theme to dark, moved comparison to an earilier section 2026年05月17日 19:40:11 -04:00
overrides fix: make logos link to home and add home to side menu 2026年05月17日 07:36:21 -07:00
.gitignore add Zensical site scaffold for StageX docs 2026年05月01日 23:23:22 -04:00
CODEOWNERS add initial set of docs 2026年05月16日 15:42:00 -07:00
Dockerfile add Zensical site scaffold for StageX docs 2026年05月01日 23:23:22 -04:00
Makefile add Zensical site scaffold for StageX docs 2026年05月01日 23:23:22 -04:00
README.md streamline next steps & see also cards, remove obsolete drafts 2026年05月17日 02:17:10 -04:00
zensical.toml set default theme to dark, moved comparison to an earilier section 2026年05月17日 19:40:11 -04:00

StageX documentation

This repository contains the source for the StageX documentation site.

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.
  • 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