@@ -0,0 +1,20 @@
APP=pxmon
AGENT=pxmon-agent
.PHONY: build test tidy run clean
build:
go build -o bin/$(APP) ./cmd/$(APP)
go build -o bin/$(AGENT) ./cmd/$(AGENT)
test:
go test ./...
tidy:
go mod tidy
run: build
./bin/$(APP)
clean:
rm -rf bin/$(APP) bin/$(AGENT)
The note is not visible to the blocked user.