-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
69 lines (52 loc) · 1.16 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
.PHONY: test
test:
npm test
.PHONY: gen-radix-api
gen-radix-api:
npm run "apigen:radix"
.PHONY: gen-local-radix-api
gen-local-radix-api:
OVERRIDE_RADIX_API_SWAGGER_URL=http://localhost:3002/swaggerui/swagger.json npm run "apigen:radix"
.PHONY: gen-cost-api
gen-cost-api:
npm run "apigen:cost"
.PHONY: gen-scan-api
gen-scan-api:
npm run "apigen:scan"
.PHONY: gen-log-api
gen-log-api:
npm run "apigen:log"
.PHONY: gen-service-now-api
gen-service-now-api:
npm run "apigen:service-now"
.PHONY: lint
lint:
npm run "lint"
npm run "lint-ts"
.PHONY: lint-fix
lint-fix:
npm run "lint-fix"
.PHONY: lint-strict
lint-strict:
npm run "lint-strict"
.PHONY: run
run:
docker compose -f docker-compose.yml up
.PHONY: run-rebuild
run-rebuild:
docker compose -f docker-compose.yml up --build
.PHONY: run-host
run-host:
docker compose -f docker-compose-host.yml up
.PHONY: run-host-rebuild
run-host-rebuild:
docker compose -f docker-compose-host.yml up --build
.PHONY: run-mac
run-mac:
docker compose -f docker-compose-host-macos.yml up
.PHONY: run-mac-rebuild
run-mac-rebuild:
docker compose -f docker-compose-host-macos.yml up --build
.PHONY: down
down:
docker compose down