This repository has been archived by the owner on Jul 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
40 lines (30 loc) · 1.42 KB
/
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
.DEFAULT_GOAL := help
setup-delivery: ## Setup each service project's source repo and pipelines
cd service-ororo && make setup-delivery
cd service-logan && make setup-delivery
load-delivery: ## Load source code into the service project repositories
cd service-ororo && make load-delivery
cd service-logan && make load-delivery
plan-delivery: ## See what's involved in setting up the delivery infrastructure
cd service-ororo && make plan-delivery
cd service-logan && make plan-delivery
destroy-delivery: ## Destroy the source repos and pipelines, but not infrastructure
cd service-ororo && make destroy-delivery
cd service-logan && make destroy-delivery
plan: ## Plan all the service infrastructure for a deployment collection
cd service-ororo && make plan
cd service-logan && make plan
up: ## Bring up all the service infrastructure for a deployment collection
cd service-ororo && make up
cd service-logan && make up
test: ## Test the service infrastructure for a deployment collection
cd service-ororo && make test
cd service-logan && make test
destroy: ## Destroy all the service infrastructure for a deployment collection
cd service-ororo && make destroy
cd service-logan && make destroy
clean: ## Clean local files
cd service-ororo && make clean
cd service-logan && make clean
help:
@grep -h -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'