Skip to content

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.

You’ll need:

  • Git
  • Go 1.26.2 or newer
  • a terminal on the machine where you want to run the CLI
Terminal window
git clone https://github.com/cotiq/sigvane-cli.git
cd sigvane-cli
Terminal window
go build -o ./bin/sigvane ./cmd/sigvane

Run:

Terminal window
./bin/sigvane version

If you see version output, the build worked.

Terminal window
mkdir -p ~/.local/bin
install ./bin/sigvane ~/.local/bin/sigvane

If ~/.local/bin is not already on your PATH, add it before continuing.

Then confirm the installed command works:

Terminal window
sigvane version

Continue with CLI getting started to create a command, configure an inbox, and start polling.