forked from OWASP/Nest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (38 loc) · 816 Bytes
/
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
include backend/Makefile
include cspell/Makefile
include frontend/Makefile
include schema/Makefile
build:
@docker compose build
check-all: \
check-backend \
check-frontend \
check-spelling
check-backend: \
pre-commit
check-test-all: \
check-all \
test-all
check-test-backend: \
pre-commit \
test-backend
check-test-frontend: \
check-frontend \
test-frontend
pre-commit:
@pre-commit run -a
run:
@docker compose -f docker/docker-compose-local.yaml build
@docker compose -f docker/docker-compose-local.yaml up --remove-orphans
test-all: \
test-nest-app \
test-schema
test-nest-app: \
test-backend \
test-frontend
update-dependencies: \
update-nest-app-dependencies \
update-schema-dependencies
update-nest-app-dependencies: \
update-backend-dependencies \
update-frontend-dependencies