Installation and Build
Requirements
- Go
1.26+ - Git
Recommended: Homebrew Tap
Use the tap at mekedron/tap:
brew tap mekedron/tap
brew install wolt-cli
Or install directly:
brew install mekedron/tap/wolt-cli
Clone
git clone https://github.com/mekedron/wolt-cli.git
cd wolt-cli
Build
Build all packages:
go build ./...
Build the CLI binary:
go build -o bin/wolt ./cmd/wolt
Build via Make:
make build
Run
Run directly without installing:
go run ./cmd/wolt --help
Run built binary:
./bin/wolt --help
Verify
go test ./...
Optional: Lint
make lint
If golangci-lint is missing:
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest