forked from Permify/permify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
93 lines (71 loc) · 2.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
export
# HELP =================================================================================================================
# This will output the help for each task
# thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
.PHONY: help
help: ## Display this help screen
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
compose-up: ### Run docker-compose
docker-compose up --build
.PHONY: compose-up
compose-up-integration-test: ### Run docker-compose with integration test
docker-compose up --build --abort-on-container-exit --exit-code-from integration
.PHONY: compose-up-integration-test
compose-down: ### Down docker-compose
docker-compose down --remove-orphans
.PHONY: compose-down
.PHONY: download
download:
@cd tools/ && go mod download
.PHONY: linter-golangci
linter-golangci: ### check by golangci linter
golangci-lint run
.PHONY: linter-hadolint
linter-hadolint: ### check by hadolint linter
git ls-files --exclude='Dockerfile*' --ignored | xargs hadolint
.PHONY: linter-dotenv
linter-dotenv: ### check by dotenv linter
dotenv-linter
.PHONY: test
test: ### run test
go test -v -cover -race ./internal/...
.PHONY: integration-test
integration-test: ### run integration-test
go clean -testcache && go test -v ./integration-test/...
.PHONY: build
build: ## Build/compile the Permify service
go build -o ./permify ./cmd/permify
.PHONY: format
format: ## Auto-format the code
gofumpt -l -w -extra .
.PHONY: lint-all
lint-all: linter-golangci linter-hadolint linter-dotenv ## Run all linters
.PHONY: security-scan
security-scan: ## Scan code for security vulnerabilities using Gosec
gosec ./...
.PHONY: coverage
coverage: ## Generate global code coverage report
go test -coverprofile=coverage.out ./cmd/... ./internal/... ./pkg/...
go tool cover -html=coverage.out -o coverage.html
.PHONY: clean
clean: ## Remove temporary and generated files
rm -f ./permify
rm -f ./pkg/development/wasm/main.wasm
rm -f ./pkg/development/wasm/play.wasm
rm -f coverage.out coverage.html
.PHONY: wasm-build
wasm-build: ## Build wasm & place it in playground
cd ./pkg/development/wasm && GOOS=js GOARCH=wasm go build -ldflags="-s -w" -o main.wasm && wasm-opt main.wasm --enable-bulk-memory -Oz -o play.wasm
cp ./pkg/development/wasm/play.wasm ./playground/public/play.wasm
.PHONY: release
release: format test security-scan clean ## Prepare for release
# Serve
.PHONY: serve
serve: build
./permify serve
.PHONY: serve-playground
serve-playground:
cd ./playground && yarn start
.PHONY: serve-docs
serve-docs:
cd ./docs && yarn start