forked from darkweak/souin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
186 lines (140 loc) · 7.45 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
.PHONY: build-and-run-caddy build-and-run-caddy-json build-and-run-chi build-and-run-dotweb build-and-run-echo build-and-run-fiber \
build-and-run-gin build-and-run-go-zero build-and-run-goyave build-and-run-skipper build-and-run-souin build-and-run-traefik \
build-and-run-tyk build-and-run-webgo build-app build-caddy build-dev bump-version coverage create-network down env-dev \
env-prod gatling generate-plantUML golangci-lint health-check-prod help lint log tests up validate vendor-plugins
DC=docker-compose
DC_BUILD=$(DC) build
DC_EXEC=$(DC) exec
PLUGINS_LIST=beego caddy chi dotweb echo fiber gin goa go-zero goyave hertz kratos roadrunner skipper traefik tyk webgo souin
MOD_PLUGINS_LIST=beego caddy chi dotweb echo fiber gin goa go-zero goyave hertz kratos roadrunner skipper webgo
base-build-and-run-%:
cd plugins/$* && $(MAKE) prepare
build-and-run-beego: base-build-and-run-beego ## Run Beego with Souin as plugin
build-and-run-caddy: ## Run caddy binary with the Caddyfile configuration
$(MAKE) build-caddy
cd plugins/caddy && ./caddy run
build-and-run-caddy-json: ## Run caddy binary with the json configuration
$(MAKE) build-caddy
cd plugins/caddy && ./caddy run --config ./configuration.json
build-and-run-chi: base-build-and-run-chi ## Run Chi with Souin as plugin
build-and-run-dotweb: base-build-and-run-dotweb ## Run Dotweb with Souin as plugin
build-and-run-echo: base-build-and-run-echo ## Run Echo with Souin as plugin
build-and-run-fiber: base-build-and-run-fiber ## Run Fiber with Souin as plugin
build-and-run-hertz: base-build-and-run-hertz ## Run Hertz with Souin as plugin
build-and-run-kratos: base-build-and-run-kratos ## Run Kratos with Souin as plugin
build-and-run-roadrunner: base-build-and-run-roadrunner ## Run Roadrunner with Souin as plugin
build-and-run-skipper: base-build-and-run-skipper ## Run Skipper with Souin as plugin
build-and-run-souin: base-build-and-run-souin ## Run Souin as plugin
build-and-run-gin: base-build-and-run-gin ## Run Gin with Souin as plugin
build-and-run-goa: base-build-and-run-goa ## Run Goa with Souin as plugin
build-and-run-go-zero: base-build-and-run-go-zero ## Run Go-zero with Souin as plugin
build-and-run-goyave: base-build-and-run-goyave ## Run Goyave with Souin as plugin
build-and-run-traefik: base-build-and-run-traefik ## Run træfik with Souin as plugin
build-and-run-tyk: base-build-and-run-tyk ## Run tyk with Souin as middleware
build-and-run-webgo: base-build-and-run-webgo ## Run Webgo with Souin as plugin
build-app: env-prod ## Build containers with prod env vars
$(DC_BUILD) souin
$(MAKE) up
build-caddy: ## Build caddy binary
cd plugins/caddy && \
go mod tidy && \
go mod download && \
XCADDY_RACE_DETECTOR=1 XCADDY_DEBUG=1 xcaddy build \
--with github.com/Redocly/souin/plugins/caddy=./ \
--with github.com/Redocly/souin=../.. \
--with github.com/darkweak/storages/badger/caddy \
--with github.com/darkweak/storages/etcd/caddy \
--with github.com/darkweak/storages/nats/caddy \
--with github.com/darkweak/storages/nuts/caddy \
--with github.com/darkweak/storages/olric/caddy \
--with github.com/darkweak/storages/otter/caddy \
--with github.com/darkweak/storages/redis/caddy
build-caddy-dev: ## Build caddy binary
cd plugins/caddy && \
go mod tidy && \
go mod download && \
XCADDY_RACE_DETECTOR=1 XCADDY_DEBUG=1 xcaddy build \
--with github.com/Redocly/souin/plugins/caddy=./ \
--with github.com/Redocly/souin=../.. \
--with github.com/darkweak/storages/badger/caddy=../../../storages/badger/caddy \
--with github.com/darkweak/storages/etcd/caddy=../../../storages/etcd/caddy \
--with github.com/darkweak/storages/nuts/caddy=../../../storages/nuts/caddy \
--with github.com/darkweak/storages/olric/caddy=../../../storages/olric/caddy \
--with github.com/darkweak/storages/otter/caddy=../../../storages/otter/caddy \
--with github.com/darkweak/storages/redis/caddy=../../../storages/redis/caddy \
--with github.com/darkweak/storages/badger=../../../storages/badger \
--with github.com/darkweak/storages/etcd=../../../storages/etcd \
--with github.com/darkweak/storages/nats=../../../storages/nats \
--with github.com/darkweak/storages/nuts=../../../storages/nuts \
--with github.com/darkweak/storages/olric=../../../storages/olric \
--with github.com/darkweak/storages/otter=../../../storages/otter \
--with github.com/darkweak/storages/redis=../../../storages/redis \
--with github.com/darkweak/storages/core=../../../storages/core
cd plugins/caddy && ./caddy run
build-dev: env-dev ## Build containers with dev env vars
$(DC_BUILD) souin
$(MAKE) up
bump-version:
test $(from)
test $(to)
sed -i '' 's/version: $(from)/version: $(to)/' README.md
for plugin in $(PLUGINS_LIST) ; do \
sed -i '' 's/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/$$plugin/go.mod ; \
done
sed -i '' 's/github.com\/darkweak\/souin $(from)/github.com\/darkweak\/souin $(to)/' plugins/souin/storages/go.mod
bump-plugins-deps: ## Bump plugins dependencies
for plugin in $(MOD_PLUGINS_LIST) ; do \
echo "Update $$plugin..." && cd plugins/$$plugin && go get -u ./... && cd - ; \
done
coverage: ## Show code coverage
$(DC_EXEC) souin go test ./... -coverprofile cover.out
$(DC_EXEC) souin go tool cover -func cover.out
create-network: ## Create network
docker network create your_network
down: ## Down containers
$(DC) down --remove-orphans
env-dev: ## Up container with dev env vars
cp Dockerfile-dev Dockerfile
cp docker-compose.yml.dev docker-compose.yml
env-prod: ## Up container with prod env vars
cp Dockerfile-prod Dockerfile
cp docker-compose.yml.prod docker-compose.yml
gatling: ## Launch gatling scenarios
cd ./gatling && $(DC) up
generate-plantUML: ## Generate plantUML diagrams
cd ./docs/plantUML && sh generate.sh && cd ../..
generate-release-plugins: ## Generate plugin workflow
bash .github/workflows/generate_release.sh
generate-workflow: ## Generate plugin workflow
bash .github/workflows/workflow_plugins_generator.sh
golangci-lint: ## Run golangci-lint to ensure the code quality
docker run --rm -v $(PWD):/app -w /app golangci/golangci-lint:v1.59.1 golangci-lint run -v --timeout 180s ./...
for plugin in $(PLUGINS_LIST) ; do \
echo "Starting lint $$plugin \n" && docker run --rm -v $(PWD):/app -w /app golangci/golangci-lint:v1.59.1 golangci-lint run -v --exclude-dirs=override --timeout 240s ./plugins/$$plugin; \
done
cd plugins/caddy && go mod tidy && go mod download
health-check-prod: build-app ## Production container health check
$(DC_EXEC) souin ls
help:
@grep -E '(^[0-9a-zA-Z_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-25s\033[0m %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/'
lint: ## Run lint
$(DC_EXEC) souin /app/bin/golint ./...
log: ## Show souin logs
$(DC) logs -f souin
sync-goreleaser-plugins: ## Synchronize plugins goreleaser
for plugin in $(PLUGINS_LIST) ; do \
cp .goreleaser.yml plugins/$$plugin; \
done
tests: ## Run tests
$(DC_EXEC) souin go test -v ./...
up: ## Up containers
$(DC) up -d --remove-orphans
validate: lint tests down health-check-prod ## Run lint, tests and ensure prod can build
vendor-plugins: ## Generate and prepare vendors for each plugin
go mod tidy && go mod download
for plugin in $(PLUGINS_LIST) ; do \
cd plugins/$$plugin && ($(MAKE) vendor || true) && cd -; \
done
cd plugins/caddy && go mod tidy && go mod download
cd plugins/souin && go mod tidy && go mod download
cd plugins/souin/storages && go mod tidy && go mod download