-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (29 loc) · 799 Bytes
/
Makefile
File metadata and controls
42 lines (29 loc) · 799 Bytes
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
# Makefile for FlowManager
.DEFAULT_GOAL := start-full-mobile-flow
DOCKER_COMPOSE_FILE=./deploy/local/docker-compose.yml
start-docker-compose:
docker-compose -f $(DOCKER_COMPOSE_FILE) up -d
start-user-micro-service:
cd ../user-micro-service && make
start-debate-zone-micro-service:
cd ../debate-zone-micro-service && make
start-notification-micro-service:
cd ../notification-micro-service && make
start-gateway:
cd ../gateway && make
start-back-end: \
start-docker-compose \
start-user-micro-service \
start-debate-zone-micro-service \
start-notification-micro-service \
start-gateway \
start-mobile:
cd ../mobile-client && make
start-web:
cd ../web-client && make
start-full-mobile-flow: \
start-back-end \
start-mobile
start-full-web-flow: \
start-back-end \
start-web