-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathMakefile
206 lines (167 loc) · 9.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
.EXPORT_ALL_VARIABLES:
# HOST
IPS := $(shell hostname -I)
IP := $(word 1, $(IPS))
update-hosts-current-ip:
-./hosts.sh remove kraken-local
./hosts.sh add kraken-local $(IP)
update-hosts-localhost:
-./hosts.sh remove kraken-local
./hosts.sh add kraken-local 127.0.0.1
# LAUNCH
launch-frontend:
gnome-terminal --tab -- /bin/sh -c 'cd frontend; make serve APP=project'
gnome-terminal --tab -- /bin/sh -c 'cd frontend; make serve APP=administration'
gnome-terminal --tab -- /bin/sh -c 'cd frontend; make serve APP=gatling'
launch-documentation:
gnome-terminal --tab -- /bin/sh -c 'cd documentation; make serve'
launch-backend-docker:
gnome-terminal --tab -- /bin/sh -c 'cd backend; make serve-docker-all'
launch-backend-k8s:
gnome-terminal --tab -- /bin/sh -c 'cd backend; make serve-kubernetes-all'
launch-dev-docker:
gnome-terminal --tab -- /bin/sh -c 'cd development/compose; make up'
launch-dev-k8s:
$(MAKE) -C development/k8s/kind kind-serve
$(MAKE) -C development/k8s/helm install
launch-docker:
$(MAKE) launch-dev-docker
sleep 10
$(MAKE) launch-backend-docker
$(MAKE) launch-frontend
$(MAKE) launch-documentation
launch-k8s:
$(MAKE) launch-dev-k8s
sleep 10
$(MAKE) launch-backend-k8s
$(MAKE) launch-frontend
$(MAKE) launch-documentation
# GIT
git-help:
@echo "git-init : Install git-flow, initialise repositories."
@echo "git-pull BRANCH=branch_name : Checkout the branch, fetch it and pull it, for submodules too."
@echo "git-push BRANCH=branch_name : Push the branch and the branch on submodules."
@echo "git-branch-start FEATURE=feature_name : Create a branch."
@echo "git-commit-push MESSAGE=message_txt FEATURE=feature_name : Commit and push."
@echo "git-squash FEATURE=feature_name MESSAGE=\"message_txt\" : Replace all commits on a branch by new message and push the branch."
@echo "git-branch-finish FEATURE=feature_name : Merge the branch in develop but not push. You must run : make git-push BRANCH=develop"
@echo "git-rebase FROM=from_branch_name TO=to_branch_name : rebase the branch 'FROM' on the branch 'TO' for current and submodules."
@echo "git-pull-force FEATURE=feature_name : Checkout the branch, fetch it and reset hard it, for submodules too."
@echo "git-release-start RELEASE=release_name : Create a release."
@echo "git-release-finish RELEASE=release_name : Finish a release."
@echo "git-commit-release-push MESSAGE=message_txt RELEASE=release_name : Commit and push for a release."
#list_submodules := backend/commons/ee backend/applications/ee deployment documentation
#cmd_pull_submodule = $(foreach submodule,$(list_submodules),$(MAKE) git-pull-submodule SUBMODULE=$(submodule))
git-pull:
git checkout $(BRANCH)
git fetch --progress --prune --recurse-submodules=no origin
git pull origin $(BRANCH)
git submodule update
$(MAKE) git-pull-submodule SUBMODULE=backend/commons/ee BRANCH=$(BRANCH)
$(MAKE) git-pull-submodule SUBMODULE=backend/applications/ee BRANCH=$(BRANCH)
$(MAKE) git-pull-submodule SUBMODULE=deployment BRANCH=$(BRANCH)
$(MAKE) git-pull-submodule SUBMODULE=documentation BRANCH=$(BRANCH)
git-pull-submodule:
cd $(SUBMODULE);git checkout $(BRANCH)
cd $(SUBMODULE);git fetch --progress --prune --recurse-submodules=no origin
cd $(SUBMODULE);git pull origin $(BRANCH)
git-push:
git push origin $(BRANCH)
$(MAKE) git-push-submodule SUBMODULE=backend/commons/ee BRANCH=$(BRANCH)
$(MAKE) git-push-submodule SUBMODULE=backend/applications/ee BRANCH=$(BRANCH)
$(MAKE) git-push-submodule SUBMODULE=deployment BRANCH=$(BRANCH)
$(MAKE) git-push-submodule SUBMODULE=documentation BRANCH=$(BRANCH)
git-push-submodule:
cd $(SUBMODULE);git push origin $(BRANCH)
git-init:
sudo apt-get update -y
sudo apt-get install -y git-flow
git config --global pull.rebase true
git submodule init
git submodule update
git flow init -d
$(MAKE) git-init-submodule SUBMODULE=backend/commons/ee
$(MAKE) git-init-submodule SUBMODULE=backend/applications/ee
$(MAKE) git-init-submodule SUBMODULE=deployment
$(MAKE) git-init-submodule SUBMODULE=documentation
git-init-submodule:
cd $(SUBMODULE);git flow init -d
git-branch-start:
$(MAKE) git-pull BRANCH=develop
git flow feature start $(FEATURE)
$(MAKE) git-branch-start-submodule SUBMODULE=backend/commons/ee FEATURE=$(FEATURE)
$(MAKE) git-branch-start-submodule SUBMODULE=backend/applications/ee FEATURE=$(FEATURE)
$(MAKE) git-branch-start-submodule SUBMODULE=deployment FEATURE=$(FEATURE)
$(MAKE) git-branch-start-submodule SUBMODULE=documentation FEATURE=$(FEATURE)
git-branch-start-submodule:
cd $(SUBMODULE);git flow feature start $(FEATURE)
git-commit-push:
-$(MAKE) git-commit-push-submodule SUBMODULE=backend/commons/ee MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-$(MAKE) git-commit-push-submodule SUBMODULE=backend/applications/ee MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-$(MAKE) git-commit-push-submodule SUBMODULE=deployment MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-$(MAKE) git-commit-push-submodule SUBMODULE=documentation MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-git add -A; git commit -a -m "$(MESSAGE)"; git flow feature publish $(FEATURE)
git-commit-push-submodule:
cd $(SUBMODULE);git add -A; git commit -a -m "$(MESSAGE)"; git flow feature publish $(FEATURE)
git-branch-finish:
-$(MAKE) git-branch-finish-submodule SUBMODULE=backend/commons/ee FEATURE=$(FEATURE)
-$(MAKE) git-branch-finish-submodule SUBMODULE=backend/applications/ee FEATURE=$(FEATURE)
-$(MAKE) git-branch-finish-submodule SUBMODULE=deployment FEATURE=$(FEATURE)
-$(MAKE) git-branch-finish-submodule SUBMODULE=documentation FEATURE=$(FEATURE)
git flow feature finish $(FEATURE)
git-branch-finish-submodule:
cd $(SUBMODULE);git flow feature finish $(FEATURE)
git-squash:
-$(MAKE) git-squash-submodule SUBMODULE=backend/commons/ee MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-$(MAKE) git-squash-submodule SUBMODULE=backend/applications/ee MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-$(MAKE) git-squash-submodule SUBMODULE=deployment MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
-$(MAKE) git-squash-submodule SUBMODULE=documentation MESSAGE="$(MESSAGE)" FEATURE=$(FEATURE)
git checkout feature/$(FEATURE);git reset $$(git merge-base develop $$(git rev-parse --abbrev-ref feature/$(FEATURE)));git add -A;git commit -m "$(MESSAGE)";git push -f origin feature/$(FEATURE)
git-squash-submodule:
cd $(SUBMODULE);git checkout feature/$(FEATURE);git reset $$(git merge-base develop $$(git rev-parse --abbrev-ref feature/$(FEATURE)));git add -A;git commit -m "$(MESSAGE)";git push -f origin feature/$(FEATURE)
git-rebase:
-$(MAKE) git-rebase-submodule SUBMODULE=backend/commons/ee FROM=$(FROM) TO=$(TO)
-$(MAKE) git-rebase-submodule SUBMODULE=backend/applications/ee FROM=$(FROM) TO=$(TO)
-$(MAKE) git-rebase-submodule SUBMODULE=deployment FROM=$(FROM) TO=$(TO)
-$(MAKE) git-rebase-submodule SUBMODULE=documentation FROM=$(FROM) TO=$(TO)
git checkout $(FROM);git rebase origin/$(TO) $(FROM);git push origin $(FROM) --force
git-rebase-submodule:
cd $(SUBMODULE);git checkout $(FROM);git rebase origin/$(TO) $(FROM);git push origin $(FROM) --force
git-pull-force:
-$(MAKE) git-pull-force-submodule SUBMODULE=backend/commons/ee FEATURE=$(FEATURE)
-$(MAKE) git-pull-force-submodule SUBMODULE=backend/applications/ee FEATURE=$(FEATURE)
-$(MAKE) git-pull-force-submodule SUBMODULE=deployment FEATURE=$(FEATURE)
-$(MAKE) git-pull-force-submodule SUBMODULE=documentation FEATURE=$(FEATURE)
git checkout feature/$(FEATURE); git fetch origin feature/$(FEATURE); git reset --hard origin/feature/$(FEATURE)
git-pull-force-submodule:
cd $(SUBMODULE);git checkout feature/$(FEATURE); git fetch origin feature/$(FEATURE); git reset --hard origin/feature/$(FEATURE)
git-release-start:
$(MAKE) git-pull BRANCH=develop
git flow release start $(RELEASE)
git flow release publish $(RELEASE)
$(MAKE) git-release-start-submodule SUBMODULE=backend/commons/ee RELEASE=$(RELEASE)
$(MAKE) git-release-start-submodule SUBMODULE=backend/applications/ee RELEASE=$(RELEASE)
$(MAKE) git-release-start-submodule SUBMODULE=deployment RELEASE=$(RELEASE)
$(MAKE) git-release-start-submodule SUBMODULE=documentation RELEASE=$(RELEASE)
git-release-start-submodule:
cd $(SUBMODULE);git flow release start $(RELEASE)
cd $(SUBMODULE);git flow release publish $(RELEASE)
git-release-finish:
$(MAKE) git-pull BRANCH=develop
git flow release finish $(RELEASE)
git push origin --tags
$(MAKE) git-release-finish-submodule SUBMODULE=backend/commons/ee RELEASE=$(RELEASE)
$(MAKE) git-release-finish-submodule SUBMODULE=backend/applications/ee RELEASE=$(RELEASE)
$(MAKE) git-release-finish-submodule SUBMODULE=deployment RELEASE=$(RELEASE)
$(MAKE) git-release-finish-submodule SUBMODULE=documentation RELEASE=$(RELEASE)
git-release-finish-submodule:
cd $(SUBMODULE);git flow release finish $(RELEASE)
cd $(SUBMODULE);git push origin --tags
git-commit-release-push:
-$(MAKE) git-commit-release-push-submodule SUBMODULE=backend/commons/ee MESSAGE="$(MESSAGE)" RELEASE=$(RELEASE)
-$(MAKE) git-commit-release-push-submodule SUBMODULE=backend/applications/ee MESSAGE="$(MESSAGE)" RELEASE=$(RELEASE)
-$(MAKE) git-commit-release-push-submodule SUBMODULE=deployment MESSAGE="$(MESSAGE)" RELEASE=$(RELEASE)
-$(MAKE) git-commit-release-push-submodule SUBMODULE=documentation MESSAGE="$(MESSAGE)" RELEASE=$(RELEASE)
-git add -A; git commit -a -m "$(MESSAGE)"; git flow release publish $(RELEASE)
git-commit-release-push-submodule:
cd $(SUBMODULE);git add -A; git commit -a -m "$(MESSAGE)"; git flow release publish $(RELEASE)