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
-
Go to the GitHub Releases.
-
Download the binary for your platform:
sombra-linux-amd64
sombra-darwin-arm64
sombra-windows-amd64.exe
-
Make it executable (Linux/macOS):
chmod +x sombra-*
mv sombra-* /usr/local/bin/sombra
- 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.