-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
38 lines (25 loc) · 920 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
################################################## Native Commands ##########################################################
install_mobile:
npm --prefix ./front-end-mobile install
dev_native:
docker-compose up -d scala-api
npm --prefix ./front-end-mobile run start
start_mobile_only:
npm --prefix ./front-end-mobile run start
setup:
docker volume create nodemodules
stop_scala:
docker-compose stop db
docker-compose stop scala-api
################################################## Web Commands #############################################################
setup:
docker volume create nodemodules
dev_web:
docker-compose up
install_web:
docker-compose -f docker-compose.builder.yml run --rm install
################################################## Shared Commands ##########################################################
start_scala:
docker-compose up scala-api
down:
docker-compose down