-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (29 loc) · 664 Bytes
/
Makefile
File metadata and controls
42 lines (29 loc) · 664 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
install:
cd server && make install
cd ui && make install
build:
cd server && make build
clean:
cd server && make clean
local-publish:
make -f build/local/Makefile publish
local-deploy:
make -f build/local/Makefile deploy
local-teardown:
make -f build/local/Makefile teardown
aws-init:
cd build/aws && make init
aws-image:
cd build/aws && make image
aws-repo:
cd build/aws && make repository
aws-build:
cd build/aws && make build
aws-teardown:
cd build/aws && make teardown
cluster-publish:
make -f build/Makefile publish
cluster-deploy:
make -f build/Makefile deploy VERSION=$(VERSION)
cluster-teardown:
make -f build/Makefile teardown