Skip to main content
View as Markdown

Installation

Sovrium ships as a standalone binary. Pick whichever path fits your machine.

Install the CLI

>_ terminal
# Install script (macOS / Linux)
curl -fsSL https://sovrium.com/install | sh

# Homebrew
brew install sovrium/tap/sovrium

# Docker
docker pull ghcr.io/sovrium/sovrium:latest

Scaffold this template

>_ terminal
sovrium init my-docs --template docs-site
cd my-docs
sovrium start app.yaml

Your docs are now served at http://localhost:3000, with this very page at /docs/installation.

Project layout

code
my-docs/
├── app.yaml                 # entry point
├── config/
│   ├── theme.yaml           # colors, fonts, codeBlock (Shiki) theme
│   └── pages/
│       ├── home.yaml        # inline-markdown landing
│       └── docs.yaml        # contentDir collection
└── content/
    └── docs/                # ← your markdown lives here
        ├── introduction.md
        ├── installation.md
        ├── quick-start.md
        └── guides/
            ├── configuration.md
            └── deployment.md

Verify

>_ terminal
# Validate the config without starting the server
sovrium validate app.yaml

A clean run prints Valid configuration: docs-site.

Last updated August 11, 2026

Built with Sovrium
Demo