Skip to content

Install Guide

If your platform is not listed in Releases, build from source:

Terminal window
cd apps/desktop
bun install
bun run tauri build

Release binaries are on GitHub Releases. To build locally:

Terminal window
cargo build -p zann-cli

The binary is at target/debug/zann (or target/release/zann with --release).

Terminal window
git clone https://github.com/constXife/zann
cd zann
docker compose up -d

This uses config/dev.yaml and dev-only pepper values from compose.yaml.

Terminal window
docker pull constxife/zann-server:latest

Start from config/config.example.yaml and supply required secrets via env:

  • ZANN_PASSWORD_PEPPER
  • ZANN_TOKEN_PEPPER
  • ZANN_SMK_FILE or server.master_key (shared vault master key)
  • ZANN_CONFIG_PATH (path to your config file)

The config file controls auth mode, OIDC settings, policies, and metrics.

For local dev, config/dev.yaml sets auth.internal.registration: open. For production, consider invite_only and create invites from an admin account.