-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathMakefile
More file actions
58 lines (44 loc) · 1.01 KB
/
Makefile
File metadata and controls
58 lines (44 loc) · 1.01 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
.PHONY: install-tools
install-tools:
@./scripts/install-tools.sh
.PHONY: run-app
run-app:
@./scripts/run.sh
.PHONY: build
build:
@./scripts/build.sh
.PHONY: install-dependencies
install-dependencies:
@./scripts/install-dependencies.sh
.PHONY: docker-compose-infra-up
docker-compose-infra-up:
@docker-compose -f deployments/docker-compose/docker-compose.infrastructure.yaml up --build -d
docker-compose-infra-down:
@docker-compose -f deployments/docker-compose/docker-compose.infrastructure.yaml down
.PHONY: openapi
openapi:
@./scripts/openapi.sh
.PHONY: unit-test
unit-test:
@./scripts/test.sh unit
.PHONY: integration-test
integration-test:
@./scripts/test.sh integration
.PHONY: e2e-test
e2e-test:
@./scripts/test.sh e2e
#.PHONY: load-test
#load-test:
# @./scripts/test.sh load-test
.PHONY: format
format:
@./scripts/format.sh
.PHONY: lint
lint:
@./scripts/lint.sh
.PHONY: mocks
mocks:
mockery --output mocks --all
.PHONY: update-dependencies
update-dependencies:
@./scripts/update-dependencies.sh