-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathMakefile-for-http
More file actions
160 lines (119 loc) · 4.38 KB
/
Makefile-for-http
File metadata and controls
160 lines (119 loc) · 4.38 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
SHELL := /bin/bash
PROJECT_NAME := "github.com/go-dev-frame/sponge"
PKG := "$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/ | grep -v /api/ | grep -v /cmd/)
.PHONY: ci-lint
# Check the code specification against the rules in the .golangci.yml file
ci-lint:
@gofmt -s -w .
golangci-lint run ./...
.PHONY: test
# Test *_test.go files, the parameter -count=1 means that caching is disabled
test:
go test -count=1 -short ${PKG_LIST}
.PHONY: cover
# Generate test coverage
cover:
go test -short -coverprofile=cover.out -covermode=atomic ${PKG_LIST}
go tool cover -html=cover.out
.PHONY: graph
# Generate interactive visual function dependency graphs
graph:
@echo "generating graph ......"
@cp -f cmd/serverNameExample_mixExample/main.go .
go-callvis -skipbrowser -format=svg -nostd -file=serverNameExample_mixExample github.com/go-dev-frame/sponge
@rm -f main.go serverNameExample_mixExample.gv
.PHONY: docs
# Generate swagger docs, only for ⓵ Create web server based on sql
docs:
@bash scripts/swag-docs.sh
.PHONY: build
# Build serverNameExample_mixExample for linux amd64 binary
build:
@echo "building 'serverNameExample_mixExample', linux binary file will output to 'cmd/serverNameExample_mixExample'"
@cd cmd/serverNameExample_mixExample && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
.PHONY: run
# Build and run service, you can specify the configuration file, e.g. make run Config=configs/dev.yml
run:
@bash scripts/run.sh $(Config)
.PHONY: run-nohup
# Run service with nohup in local, you can specify the configuration file, e.g. make run-nohup Config=configs/dev.yml, if you want to stop the server, pass the parameter stop, e.g. make run-nohup CMD=stop
run-nohup:
@bash scripts/run-nohup.sh $(Config) $(CMD)
.PHONY: run-docker
# Deploy service in local docker, if you want to update the service, run the make run-docker command again
run-docker: image-build-local
@bash scripts/deploy-docker.sh
.PHONY: binary-package
# Packaged binary files
binary-package: build
@bash scripts/binary-package.sh
.PHONY: deploy-binary
# Deploy binary to remote linux server, e.g. make deploy-binary USER=root PWD=123456 IP=192.168.1.10
deploy-binary: binary-package
@expect scripts/deploy-binary.sh $(USER) $(PWD) $(IP)
.PHONY: image-build-local
# Build image for local docker, tag=latest, use binary files to build
image-build-local: build
@bash scripts/image-build-local.sh
.PHONY: image-build
# Build image for remote repositories, use binary files to build, e.g. make image-build REPO_HOST=addr TAG=latest
image-build:
@if [ -z "$(REPO_HOST)" ]; then \
echo "ERROR: REPO_HOST is required. Usage: make image-build REPO_HOST=xxx"; \
exit 1; \
fi
@bash scripts/image-build.sh $(REPO_HOST) $(TAG)
.PHONY: image-build2
# Build image for remote repositories, phase II build, e.g. make image-build2 REPO_HOST=addr TAG=latest
image-build2:
@if [ -z "$(REPO_HOST)" ]; then \
echo "ERROR: REPO_HOST is required. Usage: make image-build2 REPO_HOST=xxx"; \
exit 1; \
fi
@bash scripts/image-build2.sh $(REPO_HOST) $(TAG)
.PHONY: image-push
# Push docker image to remote repositories, e.g. make image-push REPO_HOST=addr TAG=latest
image-push:
@if [ -z "$(REPO_HOST)" ]; then \
echo "ERROR: REPO_HOST is required. Usage: make image-push REPO_HOST=xxx TAG=latest"; \
exit 1; \
fi
@bash scripts/image-push.sh $(REPO_HOST) $(TAG)
.PHONY: deploy-k8s
# Deploy service to k8s
deploy-k8s:
@bash scripts/deploy-k8s.sh
.PHONY: update-config
# Update internal/config code base on yaml file
update-config:
@sponge config --server-dir=.
.PHONY: clean
# Clean binary file, cover.out, template file
clean:
@rm -vrf cmd/serverNameExample_mixExample/serverNameExample_mixExample*
@rm -vrf cover.out
@rm -vrf main.go serverNameExample_mixExample.gv
@rm -vrf internal/ecode/*.go.gen*
@rm -vrf internal/routers/*.go.gen*
@rm -vrf internal/handler/*.go.gen*
@rm -vrf internal/service/*.go.gen*
@rm -rf serverNameExample-binary.tar.gz
@echo "clean finished"
# Show help
help:
@echo ''
@echo 'Usage:'
@echo ' make <target>'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-_0-9]+:/ { \
helpMessage = match(lastLine, /^# (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
printf "\033[1;36m %-22s\033[0m %s\n", helpCommand,helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.DEFAULT_GOAL := all