Skip to content

Installation

mise (Recommended)

mise is a polyglot runtime manager. It handles versioning and updates automatically.

sh
mise use --global github:davidolrik/overseer@latest

To update later:

sh
mise upgrade overseer

go install

If you have Go installed:

sh
go install go.olrik.dev/overseer@latest

This installs to your $GOPATH/bin directory (usually ~/go/bin). Make sure it's in your PATH.

Manual Download

Download a precompiled binary from the GitHub releases page, extract it, and move it to a directory in your PATH:

sh
# Example for macOS (Apple Silicon)
curl -L https://github.com/davidolrik/overseer/releases/latest/download/overseer_darwin_arm64.tar.gz | tar xz
sudo mv overseer /usr/local/bin/

Available Binaries

BinaryPlatform
overseer_darwin_arm64.tar.gzmacOS (Apple Silicon)
overseer_darwin_amd64.tar.gzmacOS (Intel)
overseer_linux_arm64.tar.gzLinux (ARM64)
overseer_linux_amd64.tar.gzLinux (x86_64)

Verify Installation

sh
overseer version

Next Steps

Continue to the Quick Start to set up your first configuration.