mirror of
https://github.com/lukaszraczylo/graphql-monitoring-proxy.git
synced 2026-06-05 23:03:48 +00:00
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
CI_RUN?=false
|
|
# ADDITIONAL_BUILD_FLAGS=""
|
|
|
|
# ifeq ($(CI_RUN), true)
|
|
# ADDITIONAL_BUILD_FLAGS="-test.short"
|
|
# endif
|
|
|
|
.PHONY: help
|
|
help: ## display this help
|
|
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n\nTargets:\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-20s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST)
|
|
|
|
.PHONY: run
|
|
run: build ## run application
|
|
@LOG_LEVEL=debug PURGE_METRICS_ON_CRAWL=true BLOCK_SCHEMA_INTROSPECTION=false CACHE_TTL=10 JWT_ROLE_RATE_LIMIT=false JWT_ROLE_CLAIM_PATH="Hasura.x-hasura-default-role" JWT_USER_CLAIM_PATH="Hasura.x-hasura-user-id" HOST_GRAPHQL=https://hasura8.lan/ HEALTHCHECK_GRAPHQL_URL=https://hasura8.lan/v1/graphql ./graphql-proxy
|
|
|
|
.PHONY: build
|
|
build: ## build the binary
|
|
go build -o graphql-proxy *.go
|
|
|
|
.PHONY: test
|
|
test: ## run tests on library
|
|
@LOG_LEVEL=info go test -v -cover -race ./...
|
|
|
|
.PHONY: test-packages
|
|
test-packages: ## run tests on packages
|
|
@go test -v -cover ./pkg/...
|
|
|
|
.PHONY: all
|
|
all: test-packages test
|
|
|
|
.PHONY: update
|
|
update: ## update dependencies
|
|
@go get -u -v ./...
|
|
@go mod tidy -v
|