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%
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.tomlcontains 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