Documentation site for Sentinel.
Live: https://sentinel.raskell.io/docs
# Install tools
mise install
# Start dev server
mise run serveVisit http://127.0.0.1:1111
| Task | Description |
|---|---|
mise run serve |
Dev server with live reload |
mise run build |
Build for production |
mise run check |
Check for broken links |
mise run clean |
Clean build artifacts |
sentinel.raskell.io-docs/
├── config.toml # Zola configuration
├── content/
│ ├── _index.md # Introduction
│ ├── getting-started/ # Installation, quick start
│ ├── concepts/ # Architecture, design
│ ├── configuration/ # Config reference
│ ├── agents/ # Agent system docs
│ ├── operations/ # Production guides
│ ├── deployment/ # Deployment options
│ ├── examples/ # Example configs
│ ├── development/ # Contributing guides
│ ├── reference/ # API, CLI, metrics
│ └── appendix/ # Changelog, FAQ, license
├── syntaxes/ # Custom syntax highlighting
└── themes/tanuki/ # Documentation theme
Create content/section/page.md:
+++
title = "Page Title"
weight = 1
+++
Content in Markdown...Code blocks with syntax highlighting:
```kdl
server {
listener "0.0.0.0:8080"
}
```- sentinel — Main repository
- sentinel.raskell.io — Marketing site
- Discussions — Questions and ideas
Apache 2.0