Installation
Voltig CLI can be installed on any Unix system, macOS (via Homebrew), or built from source.
🌀 One-liner (Any Unix)
Section titled “🌀 One-liner (Any Unix)”Install the latest release directly (requires curl, tar):
curl -fsSL https://raw.githubusercontent.com/voltigdev/voltig/main/scripts/install.sh | bash💡 Tip: This script will download and install the latest Voltig binary for your platform.
🍺 Homebrew Installation (macOS)
Section titled “🍺 Homebrew Installation (macOS)”brew tap voltigdev/voltigbrew install voltig🛠️ Note: Homebrew is the recommended way to install on macOS.
🧑💻 Build from Source
Section titled “🧑💻 Build from Source”git clone <repo-url>cd voltig-cli
go mod tidy
go build -o voltig .mv ./voltig $HOME/go/bin/# Make sure $HOME/go/bin is in your PATH⚠️ Warning: Building from source requires Go installed on your system.
Adding more support for other platforms is planned for the future.