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
|
||
|---|---|---|
| .forgejo/workflows | forge token | |
| docs | set default theme to dark, moved comparison to an earilier section | |
| overrides | fix: make logos link to home and add home to side menu | |
| .gitignore | add Zensical site scaffold for StageX docs | |
| CODEOWNERS | add initial set of docs | |
| Dockerfile | add Zensical site scaffold for StageX docs | |
| Makefile | add Zensical site scaffold for StageX docs | |
| README.md | streamline next steps & see also cards, remove obsolete drafts | |
| zensical.toml | set default theme to dark, moved comparison to an earilier section | |
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.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