15 lines
250 B
Makefile
15 lines
250 B
Makefile
.PHONY: test build run clean
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
build:
|
|
mkdir -p dist
|
|
CGO_ENABLED=0 go build -trimpath -ldflags="-s -w" -o dist/notify-gateway-linux-amd64 ./cmd/gateway
|
|
|
|
run:
|
|
go run ./cmd/gateway -config ./data/config.json
|
|
|
|
clean:
|
|
rm -rf dist
|