Skip to content

Install

Jobin Lawrance edited this page Jul 2, 2026 · 1 revision

Install

Binary and package are always tinyraven (never tb — that's Tinybird's CLI).

Platform Command
macOS / Linux (Homebrew) brew tap ravencloak-org/tinyraven && brew install tinyraven
Debian / Ubuntu add the repo, then sudo apt-get install tinyraven
RHEL / Fedora add the repo, then sudo dnf install tinyraven
Any (Go) go install github.com/ravencloak-org/tiny/cmd/tinyraven@latest
Any (Docker) docker run -p 8000:8000 ghcr.io/ravencloak-org/tiny:latest serve
Any (binary) download from Releases, unpack tinyraven

Brew and the deb/rpm packages also install shell completions and the Postman/Bruno API collection automatically.

go install ...@latest can briefly resolve the previous version while the Go module proxy refreshes after a release — pin @vX.Y.Z or use GOPROXY=direct to get the newest immediately.

Full per-platform steps (APT keys, GPG signature verification): docs/install.md.

First run

tinyraven local start          # ClickHouse + Redis + TinyRaven via Docker Compose
curl localhost:8000/health     # {"status":"ok"}

See CLI and API.

Clone this wiki locally