mirror of
https://github.com/paymog/groundcover-cli.git
synced 2026-09-14 20:36:51 +08:00
5729b8c1a0
Go CLI for the Groundcover APIs. SDK-backed commands for stable endpoints, plus raw HAR-derived passthrough for webapp endpoints the SDK does not expose.
14 lines
260 B
Makefile
14 lines
260 B
Makefile
VERSION ?= dev
|
|
LDFLAGS := -s -w -X github.com/paymog/groundcover-cli/internal/cli.version=$(VERSION)
|
|
|
|
.PHONY: build test generate
|
|
|
|
build:
|
|
go build -ldflags "$(LDFLAGS)" ./cmd/groundcover
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
generate:
|
|
go run ./scripts/generate-commands.go
|