forked from OWASP/Nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
80 lines (62 loc) · 1.41 KB
/
Makefile
File metadata and controls
80 lines (62 loc) · 1.41 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
include backend/Makefile
include cspell/Makefile
include docs/Makefile
include frontend/Makefile
include schema/Makefile
MAKEFLAGS += --no-print-directory
build:
@docker compose build
clean: \
clean-dependencies \
clean-docker
clean-dependencies: \
clean-backend-dependencies \
clean-frontend-dependencies \
clean-schema-dependencies
clean-docker: \
clean-backend-docker \
clean-docs-docker \
clean-frontend-docker
check: \
check-spelling \
check-backend \
check-frontend
check-backend: \
pre-commit
check-test: \
check \
test
check-test-backend: \
pre-commit \
test-backend
check-test-frontend: \
check-frontend \
test-frontend
pre-commit:
@pre-commit run -a
prune:
@docker builder prune --filter 'until=72h' -a -f
@docker image prune --filter 'until=72h' -a -f
@docker volume prune -f
run:
@COMPOSE_BAKE=true DOCKER_BUILDKIT=1 \
docker compose -f docker-compose/local.yaml --project-name nest-local build && \
docker compose -f docker-compose/local.yaml --project-name nest-local up --remove-orphans
test: \
test-nest-app \
test-schema
test-nest-app: \
test-backend \
test-frontend
update: \
clean-dependencies \
update-docs-dependencies \
update-nest-app-dependencies \
update-pre-commit \
update-schema-dependencies
update-nest-app-dependencies: \
update-backend-dependencies \
update-cspell-dependencies \
update-frontend-dependencies
update-pre-commit:
@pre-commit autoupdate