-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
51 lines (42 loc) · 863 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.PHONY: build test_api api verifier streamer aggregator store_stream
SHELL := /bin/bash
DOCKER_REGISTRY = docker-registry:5000
KRM_IMAGE = krm-app
KRM_TAG = latest
build:
{ \
docker build --rm -t $(DOCKER_REGISTRY)/$(KRM_IMAGE):$(KRM_TAG) . ;\
docker push $(DOCKER_REGISTRY)/$(KRM_IMAGE):$(KRM_TAG) ;\
}
create_env:
touch development.env
test_api:
{ \
source development.env ;\
python3 test_api.py ;\
}
api: create_env
{ \
source development.env ;\
python3 app/app_api.py ;\
}
verifier: create_env
{ \
source development.env ;\
python3 app/app_verifier.py ;\
}
streamer: create_env
{ \
source development.env ;\
python3 app/app_streamer.py ;\
}
aggregator: create_env
{ \
source development.env ;\
python3 app/app_aggregator.py ;\
}
store_stream: create_env
{ \
source development.env ;\
python3 app/app_store_stream.py ;\
}