-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathMakefile
38 lines (30 loc) · 1.07 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.DEFAULT_GOAL := help
.PHONY: help
help: ## Print this help message.
@echo "Usage: make [target]"
@echo ""
@echo "Targets:"
@echo ""
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: build-image
build-image: ## Build the Docker image.
docker build -t mcp-grafana:latest .
.PHONY: lint
lint: ## Lint the Go code.
go tool -modfile go.tools.mod golangci-lint run
.PHONY: test test-unit
test-unit: ## Run the unit tests (no external dependencies required).
go test -v -tags unit ./...
test: test-unit
.PHONY: test-integration
test-integration: ## Run only the Docker-based integration tests (Requires docker containers to be up and running).
go test -v -tags integration ./...
.PHONY: test-cloud
test-cloud: ## Run only the cloud-based tests (requires cloud Grafana instance and credentials).
go test -v -tags cloud ./tools
.PHONY: run
run: ## Run the MCP server in stdio mode.
go run ./...
.PHONY: run-sse
run-sse: ## Run the MCP server in SSE mode.
go run ./... --transport sse