forked from bcgov/biohubbc-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
370 lines (311 loc) · 17.6 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
#!make
# ------------------------------------------------------------------------------
# Makefile -- BioHub
# ------------------------------------------------------------------------------
-include .env
# Apply the contents of the .env to the terminal, so that the docker-compose file can use them in its builds
export $(shell sed 's/=.*//' .env)
.DEFAULT : help
.PHONY : setup close clean build-backend run-backend build-web run-web database app api db-setup db-migrate db-rollback n8n-setup n8n-export clamav install test cypress lint lint-fix format format-fix help
## ------------------------------------------------------------------------------
## Alias Commands
## - Performs logical groups of commands for your convenience
## ------------------------------------------------------------------------------
# Running the docker build
# 1. Run `make env`
# 2. Edit the `.env` file as needed to update variables and secrets
# 3. Run `make web`
env: | setup ## Copies the default ./env_config/env.docker to ./.env
postgres: | close build-postgres run-postgres ## Performs all commands necessary to run the postgres project (db) in docker
backend: | close build-backend run-backend ## Performs all commands necessary to run all backend projects (db, api) in docker
web: | close build-web run-web ## Performs all commands necessary to run all backend+web projects (db, api, app, n8n) in docker
db-setup: | build-db-setup run-db-setup ## Performs all commands necessary to run the database migrations and seeding
db-migrate: | build-db-migrate run-db-migrate ## Performs all commands necessary to run the database migrations
db-rollback: | build-db-rollback run-db-rollback ## Performs all commands necessary to rollback the latest database migrations
n8n-setup: | build-n8n-setup run-n8n-setup ## Performs all commands necessary to run the n8n setup
n8n-export: | build-n8n-export run-n8n-export ## Performs all commands necessary to export the latest n8n credentials and workflows
clamav: | build-clamav run-clamav ## Performs all commands necessary to run clamav
## ------------------------------------------------------------------------------
## Setup/Cleanup Commands
## ------------------------------------------------------------------------------
setup: ## Prepares the environment variables used by all project docker containers
@echo "==============================================="
@echo "Make: setup - copying env.docker to .env"
@echo "==============================================="
@cp -i env_config/env.docker .env
close: ## Closes all project containers
@echo "==============================================="
@echo "Make: close - closing Docker containers"
@echo "==============================================="
@docker-compose -f docker-compose.yml down
clean: ## Closes and cleans (removes) all project containers
@echo "==============================================="
@echo "Make: clean - closing and cleaning Docker containers"
@echo "==============================================="
@docker-compose -f docker-compose.yml down -v --rmi all --remove-orphans
## ------------------------------------------------------------------------------
## Build/Run Postgres DB Commands
## - Builds all of the BioHub postgres db projects (db, db_setup)
## ------------------------------------------------------------------------------
build-postgres: ## Builds the postgres db containers
@echo "==============================================="
@echo "Make: build-postgres - building postgres db images"
@echo "==============================================="
@docker-compose -f docker-compose.yml build db db_setup
run-postgres: ## Runs the postgres db containers
@echo "==============================================="
@echo "Make: run-postgres - running postgres db images"
@echo "==============================================="
@docker-compose -f docker-compose.yml up -d db db_setup
## ------------------------------------------------------------------------------
## Build/Run Backend Commands
## - Builds all of the BioHub backend projects (db, db_setup, api)
## ------------------------------------------------------------------------------
build-backend: ## Builds all backend containers
@echo "==============================================="
@echo "Make: build-backend - building backend images"
@echo "==============================================="
@docker-compose -f docker-compose.yml build db db_setup api
run-backend: ## Runs all backend containers
@echo "==============================================="
@echo "Make: run-backend - running backend images"
@echo "==============================================="
@docker-compose -f docker-compose.yml up -d db db_setup api
## ------------------------------------------------------------------------------
## Build/Run Backend+Web Commands (backend + web frontend)
## - Builds all of the BioHub backend+web projects (db, db_setup, api, app, n8n, n8n_nginx, n8n_setup)
## ------------------------------------------------------------------------------
build-web: ## Builds all backend+web containers
@echo "==============================================="
@echo "Make: build-web - building web images"
@echo "==============================================="
@docker-compose -f docker-compose.yml build db db_setup api app
# @docker-compose -f docker-compose.yml build db db_setup api app n8n n8n_nginx n8n_setup
run-web: ## Runs all backend+web containers
@echo "==============================================="
@echo "Make: run-web - running web images"
@echo "==============================================="
@docker-compose -f docker-compose.yml up -d db db_setup api app
## Restart n8n as a workaround to resolve this known issue: https://github.com/n8n-io/n8n/issues/2155
# @docker-compose -f docker-compose.yml up -d n8n n8n_nginx n8n_setup
# @docker-compose restart n8n
## ------------------------------------------------------------------------------
## Commands to shell into the target container
## ------------------------------------------------------------------------------
db-container: ## Executes into database container.
@echo "==============================================="
@echo "Make: Shelling into database container"
@echo "==============================================="
@export PGPASSWORD=$(DB_ADMIN_PASS)
@docker-compose exec db psql -U $(DB_ADMIN) -d $(DB_DATABASE)
app-container: ## Executes into the app container.
@echo "==============================================="
@echo "Shelling into app container"
@echo "==============================================="
@docker-compose exec app bash
api-container: ## Executes into the api container.
@echo "==============================================="
@echo "Shelling into api container"
@echo "==============================================="
@docker-compose exec api bash
n8n-container: ## Executes into the n8n container.
@echo "==============================================="
@echo "Shelling into n8n container"
@echo "==============================================="
@docker-compose exec n8n sh
## ------------------------------------------------------------------------------
## Database migration commands
## ------------------------------------------------------------------------------
build-db-setup: ## Build the db knex setup (migrations + seeding) image
@echo "==============================================="
@echo "Make: build-db-setup - building db knex setup image"
@echo "==============================================="
@docker-compose -f docker-compose.yml build db_setup
run-db-setup: ## Run the database migrations and seeding
@echo "==============================================="
@echo "Make: run-db-setup - running database migrations and seeding"
@echo "==============================================="
@docker-compose -f docker-compose.yml up db_setup
build-db-migrate: ## Build the db knex migrations image
@echo "==============================================="
@echo "Make: build-db-migrate - bnuilding db knex migrate image"
@echo "==============================================="
@docker-compose -f docker-compose.yml build db_migrate
run-db-migrate: ## Run the database migrations
@echo "==============================================="
@echo "Make: run-db-migrate - running database migrations"
@echo "==============================================="
@docker-compose -f docker-compose.yml up db_migrate
build-db-rollback: ## Build the db knex rollback image
@echo "==============================================="
@echo "Make: build-db-rollback - building db knex rollback image"
@echo "==============================================="
@docker-compose -f docker-compose.yml build db_rollback
run-db-rollback: ## Rollback the latest database migrations
@echo "==============================================="
@echo "Make: run-db-rollback - rolling back the latest database migrations"
@echo "==============================================="
@docker-compose -f docker-compose.yml up db_rollback
## ------------------------------------------------------------------------------
## n8n commands
## ------------------------------------------------------------------------------
build-n8n-setup: ## Build the n8n setup image
@echo "==============================================="
@echo "Make: build-n8n-setup - building n8n setup image"
@echo "==============================================="
@docker-compose -f docker-compose.yml build n8n_setup
run-n8n-setup: ## Run the n8n setup
@echo "==============================================="
@echo "Make: run-n8n-setup - running n8n setup"
@echo "==============================================="
@docker-compose -f docker-compose.yml up n8n_setup
build-n8n-export: ## Build the n8n export image
@echo "==============================================="
@echo "Make: build-n8n-export - building n8n export image"
@echo "==============================================="
@docker-compose -f docker-compose.yml build n8n_export
run-n8n-export: ## Run the n8n export
@echo "==============================================="
@echo "Make: run-n8n-export - exporting the n8n credentials and workflows"
@echo "==============================================="
@docker-compose -f docker-compose.yml up n8n_export
## ------------------------------------------------------------------------------
## clamav commands
## ------------------------------------------------------------------------------
build-clamav: ## Build the clamav image
@echo "==============================================="
@echo "Make: build-clamav - building clamav image"
@echo "==============================================="
@docker-compose -f docker-compose.yml build clamav
run-clamav: ## Run clamav
@echo "==============================================="
@echo "Make: run-clamav - running clamav"
@echo "==============================================="
@docker-compose -f docker-compose.yml up -d clamav
## ------------------------------------------------------------------------------
## Run `npm` commands for all projects
## ------------------------------------------------------------------------------
install: ## Runs `npm install` for all projects
@echo "==============================================="
@echo "Running /api install"
@echo "==============================================="
@cd api && npm install && cd ..
@echo "==============================================="
@echo "Running /app install"
@echo "==============================================="
@cd app && npm install && cd ..
@echo "==============================================="
@echo "Running /database install"
@echo "==============================================="
@cd database && npm install && cd ..
test: ## Runs `npm test` for api, and app projects
@echo "==============================================="
@echo "Running /api tests"
@echo "==============================================="
@cd api && npm test && cd ..
@echo "==============================================="
@echo "Running /app tests"
@echo "==============================================="
@cd app && npm test && cd ..
cypress: ## Runs `npm run test:e2e` for api, and app projects
@echo "==============================================="
@echo "Running cypress tests"
@echo "==============================================="
@cd testing/e2e && npm run test:e2e && cd ../..
lint: ## Runs `npm lint` for all projects
@echo "==============================================="
@echo "Running /api lint"
@echo "==============================================="
@cd api && npm run lint && cd ..
@echo "==============================================="
@echo "Running /app lint"
@echo "==============================================="
@cd app && npm run lint && cd ..
@echo "==============================================="
@echo "Running /database lint"
@echo "==============================================="
@cd database && npm run lint && cd ..
lint-fix: ## Runs `npm run lint-fix ` for all projects
@echo "==============================================="
@echo "Running /api lint-fix"
@echo "==============================================="
@cd api && npm run lint-fix && cd ..
@echo "==============================================="
@echo "Running /app lint-fix"
@echo "==============================================="
@cd app && npm run lint-fix && cd ..
@echo "==============================================="
@echo "Running /database lint-fix"
@echo "==============================================="
@cd database && npm run lint-fix && cd ..
format: ## Runs `npm run format` for all projects
@echo "==============================================="
@echo "Running /api format"
@echo "==============================================="
@cd api && npm run format && cd ..
@echo "==============================================="
@echo "Running /app format"
@echo "==============================================="
@cd app && npm run format && cd ..
@echo "==============================================="
@echo "Running /database format"
@echo "==============================================="
@cd database && npm run format && cd ..
format-fix: ## Runs `npm run format-fix` for all projects
@echo "==============================================="
@echo "Running /api format-fix"
@echo "==============================================="
@cd api && npm run format-fix && cd ..
@echo "==============================================="
@echo "Running /app format-fix"
@echo "==============================================="
@cd app && npm run format-fix && cd ..
@echo "==============================================="
@echo "Running /database format-fix"
@echo "==============================================="
@cd database && npm run format-fix && cd ..
## ------------------------------------------------------------------------------
## Run `docker logs <container> -f` commands for all projects
## - You can include additional parameters by appaending an `args` param
## - Ex: `make log-app args="--tail 0"`
## ------------------------------------------------------------------------------
log-app: ## Runs `docker logs <container> -f` for the app container
@echo "==============================================="
@echo "Running docker logs for the app container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-app-$(DOCKER_NAMESPACE)-container -f $(args)
log-api: ## Runs `docker logs <container> -f` for the api container
@echo "==============================================="
@echo "Running docker logs for the api container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-api-$(DOCKER_NAMESPACE)-container -f $(args)
log-db: ## Runs `docker logs <container> -f` for the database container
@echo "==============================================="
@echo "Running docker logs for the db container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-db-$(DOCKER_NAMESPACE)-container -f $(args)
log-db-setup: ## Runs `docker logs <container> -f` for the database setup container
@echo "==============================================="
@echo "Running docker logs for the db-setup container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-db-setup-$(DOCKER_NAMESPACE)-container -f $(args)
log-n8n: ## Runs `docker logs <container> -f` for the n8n container
@echo "==============================================="
@echo "Running docker logs for the n8n container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-n8n-$(DOCKER_NAMESPACE)-container -f $(args)
log-n8n-setup: ## Runs `docker logs <container> -f` for the n8n setup container
@echo "==============================================="
@echo "Running docker logs for the n8n-setup container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-n8n-setup-$(DOCKER_NAMESPACE)-container -f $(args)
log-n8n-nginx: ## Runs `docker logs <container> -f` for the n8n nginx container
@echo "==============================================="
@echo "Running docker logs for the n8n-nginx container"
@echo "==============================================="
@docker logs $(DOCKER_PROJECT_NAME)-n8n-nginx-$(DOCKER_NAMESPACE)-container -f $(args)
## ------------------------------------------------------------------------------
## Help
## ------------------------------------------------------------------------------
help: ## Display this help screen.
@grep -h -E '^[0-9a-zA-Z_-]+:.*?##.*$$|^##.*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[33m%-20s\033[0m %s\n", $$1, $$2}' | awk 'BEGIN {FS = "## "}; {printf "\033[36m%-1s\033[0m %s\n", $$2, $$1}'