From 7cd68530bbc581191f4219cff4411628ca7b8144 Mon Sep 17 00:00:00 2001 From: zeevdr Date: Fri, 5 Jun 2026 00:45:33 +0300 Subject: [PATCH] docs: add Homebrew install instructions Adds brew tap opendecree/tap + brew install decree as the primary install method in getting-started.md, ahead of go install. The formula lives at opendecree/homebrew-tap and is auto-updated by goreleaser on each decree release. Closes #20 --- docs/getting-started.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/getting-started.md b/docs/getting-started.md index 8aa1574d..822fdbb1 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -21,6 +21,15 @@ The gRPC service is now available at `localhost:9090`. No JWT setup needed — t ## 2. Install the CLI +### Homebrew (macOS/Linux) + +```bash +brew tap opendecree/tap +brew install decree +``` + +### Go install + ```bash go install github.com/opendecree/decree/cmd/decree@latest ```