This is the official documentation website for envcheck, built with Zola static site generator.
# macOS
brew install zola
# Linux
cargo install zola
# Or download from https://www.getzola.org/zola serveVisit http://127.0.0.1:1111/
zola buildOutput is in public/.
.
├── config.toml # Zola configuration
├── content/ # Documentation content (Markdown)
│ ├── introduction/ # Getting started
│ ├── commands/ # CLI reference
│ ├── rules/ # Lint rules
│ ├── integration/ # CI/CD integration
│ └── advanced/ # Advanced topics
├── static/ # Static assets
├── themes/ # Zola themes (book)
└── .github/
└── workflows/
└── deploy.yml # GitHub Pages deployment
The site is automatically deployed to GitHub Pages on push to main.
- Edit content in
content/ - Test locally:
zola serve - Submit a PR
MIT