Skip to content

Installation

Installation Options

You can install Sombra CLI using one of the following methods:


πŸ§‘β€πŸ’» Option 1: Install via Go

If you have Go 1.16+ installed, you can use:

go install github.com/sombrahq/sombra-cli@latest
````

> This places the `sombra` binary in `$(go env GOPATH)/bin`.
> Make sure that directory is in your system `PATH`:

```bash
export PATH="$(go env GOPATH)/bin:$PATH"

πŸ“¦ Option 2: Download Prebuilt Binaries

  1. Go to the GitHub Releases.

  2. Download the binary for your platform:

    • sombra-linux-amd64
    • sombra-darwin-arm64
    • sombra-windows-amd64.exe
  3. Make it executable (Linux/macOS):

chmod +x sombra-*
mv sombra-* /usr/local/bin/sombra
  1. Confirm installation:
sombra --help

πŸ›  Option 3: Build from Source

If you prefer to build manually:

git clone https://github.com/sombrahq/sombra-cli.git
cd sombra-cli
go mod tidy
make build WHAT=sombra

Output is saved in the build/ directory.


Requirements

  • Go 1.23+
  • Unix-like shell or terminal (Linux, macOS, or Windows PowerShell)

Need help? Open an issue or contact me.