Skip to main content
All apps
Knowledge Base
Docs

Knowledge Base

The company handbook as markdown files in Git: onboarding, IT how-tos, and policies rendered as a sidebar-navigated docs site that only authenticated employees can read.

Demo sign-in
Email
demo@sovrium.com
Password
Sovrium-Demo-d8462d!

Resets every night. Visitor changes are wiped, so feel free to explore.

This app is one of the hosted Sovrium demos.

The configuration

This is the whole app. Copy it, change it, make it yours.

app.yaml
name: knowledge-base
version: 1.0.0
description: >-
  Internal knowledge base — the markdown pages feature behind sign-in. Company
  handbook articles live as plain `.md` files in Git; a single contentDir page
  turns the folder into a private, sidebar-navigated handbook only employees
  can read.

auth:
  $ref: ./config/auth.yaml

theme:
  $ref: ./config/theme.yaml

pages:
  # Public landing with the sign-in call to action.
  - $ref: ./config/pages/home.yaml
  - $ref: ./config/pages/sign-in.yaml
  # The handbook itself — same contentDir mechanics as docs-site, but gated.
  - $ref: ./config/pages/kb.yaml

Run it

Install Sovrium, then start the app from its config.

>_ terminal
curl -fsSL https://sovrium.com/install | sh
sovrium init my-handbook --template knowledge-base

Build your own

Start from a template or an empty file. One config, and Sovrium runs the whole app.

Built with Sovrium