Build from source
Use this page if you want to build the Sigvane CLI yourself instead of downloading a release archive.
After the build works, return to CLI getting started to configure the CLI and poll an inbox.
Before You Begin
Section titled “Before You Begin”You’ll need:
- Git
- Go 1.26.2 or newer
- a terminal on the machine where you want to run the CLI
1. Clone The Repository
Section titled “1. Clone The Repository”git clone https://github.com/cotiq/sigvane-cli.gitcd sigvane-cli2. Build The Binary
Section titled “2. Build The Binary”go build -o ./bin/sigvane ./cmd/sigvane3. Check The Binary
Section titled “3. Check The Binary”Run:
./bin/sigvane versionIf you see version output, the build worked.
4. Put It On Your Path
Section titled “4. Put It On Your Path”mkdir -p ~/.local/bininstall ./bin/sigvane ~/.local/bin/sigvaneIf ~/.local/bin is not already on your PATH, add it before continuing.
Then confirm the installed command works:
sigvane versionNext Step
Section titled “Next Step”Continue with CLI getting started to create a command, configure an inbox, and start polling.