-
Notifications
You must be signed in to change notification settings - Fork 75
/
Makefile
435 lines (383 loc) · 14.6 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
# Target OpenEdx release
FLAVORED_EDX_RELEASE_PATH = releases/$(shell echo ${EDX_RELEASE} | sed -E "s|\.|/|")/$(FLAVOR)
EDX_ARCHIVE_URL ?= https://github.com/openedx/edx-platform/archive/open-release/$(EDX_RELEASE_REF).tar.gz
# Target OpenEdx demo course release
EDX_DEMO_ARCHIVE_URL ?= https://github.com/openedx/edx-demo-course/archive/$(EDX_DEMO_RELEASE_REF).tar.gz
# Docker images
EDXAPP_IMAGE_NAME ?= edxapp
EDXAPP_NGINX_IMAGE_NAME ?= edxapp-nginx
EDXAPP_IMAGE_TAG ?= $(EDX_RELEASE)-$(FLAVOR)
# Redis service used
REDIS_SERVICE ?= redis
# Get local user ids
DOCKER_UID = $(shell id -u)
DOCKER_GID = $(shell id -g)
# Docker
COMPOSE = \
DOCKER_UID=$(DOCKER_UID) \
DOCKER_GID=$(DOCKER_GID) \
FLAVORED_EDX_RELEASE_PATH="$(FLAVORED_EDX_RELEASE_PATH)" \
EDXAPP_IMAGE_TAG=$(EDXAPP_IMAGE_TAG) \
docker compose
COMPOSE_SSL = NGINX_CONF=ssl $(COMPOSE)
COMPOSE_RUN = $(COMPOSE) run --rm -e HOME="/tmp"
COMPOSE_EXEC = $(COMPOSE) exec
WAIT_DB = $(COMPOSE_RUN) dockerize -wait tcp://mysql:3306 -timeout 60s
# Django
MANAGE_CMS = $(COMPOSE_EXEC) cms python manage.py cms
MANAGE_LMS = $(COMPOSE_EXEC) lms python manage.py lms
# Terminal colors
COLOR_DEFAULT = \033[0;39m
COLOR_ERROR = \033[0;31m
COLOR_INFO = \033[0;36m
COLOR_RESET = \033[0m
COLOR_SUCCESS = \033[0;32m
COLOR_WARNING = \033[0;33m
# Shell functions
SHELL=bash
define BASH_FUNC_test-service%%
() {
local service=$${1:-CMS}
local environment=$${2:-production}
local url=$${3:-http://localhost:8000}
local http_version=$${4:-1.1}
echo -n "Testing $${service} ($${environment})... "
if curl -vLk --header "Accept: text/html" "$${url}" 2>&1 \
| grep "< HTTP/$${http_version} 200 OK" > /dev/null ; then
echo -e "$(COLOR_SUCCESS)OK$(COLOR_RESET)"
else
echo -e "$(COLOR_ERROR)NO$(COLOR_RESET)"
echo -e "\n$(COLOR_ERROR)--- Error traceback ---"
curl -vLk --header "Accept: text/html" "$${url}"
echo -e "--- End error traceback ---$(COLOR_RESET)"
fi
}
endef
export BASH_FUNC_test-service%%
default: help
# Target release expected tree
$(FLAVORED_EDX_RELEASE_PATH)/data/static/production/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/data/static/production
touch $(FLAVORED_EDX_RELEASE_PATH)/data/static/production/.keep
$(FLAVORED_EDX_RELEASE_PATH)/data/static/development/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/data/static/development
touch $(FLAVORED_EDX_RELEASE_PATH)/data/static/development/.keep
$(FLAVORED_EDX_RELEASE_PATH)/data/media/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/data/media
touch $(FLAVORED_EDX_RELEASE_PATH)/data/media/.keep
$(FLAVORED_EDX_RELEASE_PATH)/data/store/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/data/store
touch $(FLAVORED_EDX_RELEASE_PATH)/data/store/.keep
$(FLAVORED_EDX_RELEASE_PATH)/data/store/openassessment_submissions/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/data/store/openassessment_submissions
touch $(FLAVORED_EDX_RELEASE_PATH)/data/store/openassessment_submissions/.keep
$(FLAVORED_EDX_RELEASE_PATH)/data/export/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/data/export
touch $(FLAVORED_EDX_RELEASE_PATH)/data/export/.keep
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course
touch $(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/.keep
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/.keep:
mkdir -p $(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform
touch $(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/.keep
# We use this rule to prevent release archive download when it's already
# available. Note that this will also reset edx-platform sources (any changes
# will be discarded).
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/README.rst:
rm -fr $(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform
${MAKE} $(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/.keep
curl -Lo /tmp/edxapp.tgz $(EDX_ARCHIVE_URL)
tar xzf /tmp/edxapp.tgz -C $(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform --strip-components=1
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/README.md:
rm -fr $(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course
${MAKE} $(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/.keep
curl -Lo /tmp/edx-demo.tgz $(EDX_DEMO_ARCHIVE_URL)
tar xzf /tmp/edx-demo.tgz -C $(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course --strip-components=1
check-activate: ## Check if an OpenEdx release version has been activated
check-activate:
@if [[ -z "${EDX_RELEASE}" ]] ; then\
echo -e "${COLOR_INFO}You must activate an OpenEdx release first.\n${COLOR_RESET}";\
bin/activate;\
echo -e "\n${COLOR_INFO}Follow instructions above then retry.${COLOR_RESET}\n";\
exit 1;\
fi
.PHONY: check-activate
bootstrap: \
check-activate \
stop \
clean \
clean-db \
tree \
build \
dev-build \
migrate \
run \
demo-course \
auth-init
bootstrap: ## install development dependencies
.PHONY: bootstrap
auth-init: \
check-activate
auth-init: ## create an oauth client and API credentials
@echo "Booting mysql service..."
$(COMPOSE) up -d mysql
$(WAIT_DB)
@$(COMPOSE_RUN) lms python /usr/local/bin/auth_init
.PHONY: auth-init
# Build production image. Note that the cms service uses the same image built
# for the lms service.
build: \
check-activate \
check-root-user \
info \
fetch-release
build: ## build the edxapp production image
@echo "🐳 Building production image..."
$(COMPOSE) build lms
$(COMPOSE) build nginx
.PHONY: build
check-root-user: ## Make sure the user calling this is not currently root
@if [[ $(shell id -u) -eq 0 ]]; \
then \
if [[ "$$ALLOW_ROOT" -ne 1 ]]; then \
echo -e "We recommend you to not run this as root" ; \
echo -e "If you want to run a make command as root please set ALLOW_ROOT=1" ; \
echo -e "(ex: sudo ALLOW_ROOT=1 make bootstrap )\n" ; \
exit 1 ; \
fi \
fi
.PHONY: check-root-user
clean: \
check-activate \
check-root-user
clean: ## remove downloaded sources
rm -r \
$(FLAVORED_EDX_RELEASE_PATH)/src/* \
$(FLAVORED_EDX_RELEASE_PATH)/data/* || exit 0
.PHONY: clean
clean-db: \
check-activate \
stop
clean-db: ## Remove mongo, mysql & redis databases
$(COMPOSE) rm mongodb mysql redis redis-sentinel redis-master redis-slave
.PHONY: clean-db
create-symlinks: \
check-activate \
check-root-user
create-symlinks: ## create symlinks to local configuration (mounted via a volume)
$(COMPOSE_RUN) --no-deps lms-dev bash -c "\
rm -f /edx/app/edxapp/edx-platform/lms/envs/fun && \
rm -f /edx/app/edxapp/edx-platform/cms/envs/fun && \
ln -sf /config/lms /edx/app/edxapp/edx-platform/lms/envs/fun && \
ln -sf /config/cms /edx/app/edxapp/edx-platform/cms/envs/fun && \
ln -sf /config/lms/root_urls.py /edx/app/edxapp/edx-platform/lms/ && \
ln -sf /config/cms/root_urls.py /edx/app/edxapp/edx-platform/cms/"
.PHONY: create-symlinks
demo-course: \
check-activate \
check-root-user \
fetch-demo
demo-course: ## Import demo course from edX repository
$(COMPOSE_RUN) -v $(PWD)/$(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course:/edx/app/edxapp/edx-demo-course cms \
python manage.py cms import /edx/var/edxapp/data /edx/app/edxapp/edx-demo-course
.PHONY: demo-course
# As we mount edx-platform as a volume in development, we need to re-create
# symlinks that points to our custom configuration
dev: \
check-activate \
create-symlinks
dev: ## start the cms and lms services (development image and servers)
# starts lms-dev as well via docker compose dependency
$(COMPOSE) up -d cms-dev
@echo "Wait for services to be up..."
$(WAIT_DB)
$(COMPOSE_RUN) dockerize -wait tcp://cms-dev:8000 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://lms-dev:8000 -timeout 60s
.PHONY: dev
# In development, we work with local directories (on our host machine) for
# static files and for edx-platform sources, and mount them in the container
# (using Docker volumes). Hence, you will need to run the update_assets target
# everytime you update edx-platform sources and plan to develop in it.
dev-assets: \
check-activate \
check-root-user \
tree \
create-symlinks \
dev-install \
dev-ui-toolkit
dev-assets: ## run update_assets to copy required statics in local volumes
$(COMPOSE_RUN) --no-deps lms-dev \
paver update_assets --settings=fun.docker_build_development --skip-collect
.PHONY: dev-assets
# Build development image. Note that the cms-dev service uses the same image
# built for the lms-dev service.
dev-build: \
check-activate \
check-root-user
dev-build: ## build the edxapp production image
@echo "🐳 Building development image..."
$(COMPOSE) build lms-dev
.PHONY: dev-build
# In development, we are mounting edx-platform's sources as a volume, hence,
# since sources are modified during the installation, we need to re-install
# them.
dev-install: \
check-activate \
check-root-user \
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/requirements/edx/local.txt
dev-install: ## re-install local libs in mounted sources
$(COMPOSE_RUN) --no-deps lms-dev \
pip install -r requirements/edx/local.txt
$(COMPOSE_RUN) --no-deps lms-dev \
npm install
.PHONY: dev-install
# FIXME
#
# Target release: eucalyptus.3
#
# This package should be manually installed from node_modules 🤮
#
# We quit with a 0 exit status if the edx-ui-oolkit dependency has not been
# fetched since we are targeting only a few releases.
dev-ui-toolkit: \
check-activate
dev-ui-toolkit:
$(COMPOSE_RUN) --no-deps lms-dev \
bash -c "cd node_modules/edx-ui-toolkit || exit 0 && npm install"
.PHONY: dev-ui-toolkit
dev-watch: \
check-activate \
check-root-user \
tree
dev-watch: ## Start assets watcher (front-end development)
$(COMPOSE_EXEC) lms-dev \
paver watch_assets --settings=fun.docker_build_development
.PHONY: dev-watch
# You can force archive download with the -B option:
#
# $ make -B fetch-demo
fetch-demo: \
check-activate \
check-root-user \
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/README.md
fetch-demo: ## fetch openedx demo course
@echo "Demo course release '$(EDX_DEMO_RELEASE_REF)' is available at: $(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/"
.PHONY: fetch-demo
# You can force archive download with the -B option:
#
# $ make -B fetch-release
fetch-release: \
check-activate \
check-root-user \
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/README.rst
fetch-release: ## fetch openedx release sources
@echo "Release '$(EDX_RELEASE_REF)' is available at: $(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/"
.PHONY: fetch-release
info: ## get activated release info
@echo -e "\n.:: OPENEDX-DOCKER ::.\n";
@if [[ -z "${EDX_RELEASE}" ]] ; then\
echo -e "$(COLOR_INFO)No active configuration.$(COLOR_RESET)";\
else\
echo -e "== Active configuration ==\n";\
echo -e "* EDX_RELEASE : $(COLOR_INFO)$(EDX_RELEASE)$(COLOR_RESET)";\
echo -e "* FLAVOR : $(COLOR_INFO)$(FLAVOR)$(COLOR_RESET)";\
echo -e "* FLAVORED_EDX_RELEASE_PATH : $(COLOR_INFO)$(FLAVORED_EDX_RELEASE_PATH)$(COLOR_RESET)";\
echo -e "* EDX_RELEASE_REF : $(COLOR_INFO)$(EDX_RELEASE_REF)$(COLOR_RESET)";\
echo -e "* EDX_ARCHIVE_URL : $(COLOR_INFO)$(EDX_ARCHIVE_URL)$(COLOR_RESET)";\
echo -e "* EDX_DEMO_RELEASE_REF : $(COLOR_INFO)$(EDX_DEMO_RELEASE_REF)$(COLOR_RESET)";\
echo -e "* EDX_DEMO_ARCHIVE_URL : $(COLOR_INFO)$(EDX_DEMO_ARCHIVE_URL)$(COLOR_RESET)";\
echo -e "* REDIS_SERVICE : $(COLOR_INFO)$(REDIS_SERVICE)$(COLOR_RESET)";\
echo -e "* EDXAPP_IMAGE_NAME : $(COLOR_INFO)$(EDXAPP_IMAGE_NAME)$(COLOR_RESET)";\
echo -e "* EDXAPP_IMAGE_TAG : $(COLOR_INFO)$(EDXAPP_IMAGE_TAG)$(COLOR_RESET)";\
echo -e "* EDXAPP_NGINX_IMAGE_NAME : $(COLOR_INFO)$(EDXAPP_NGINX_IMAGE_NAME)$(COLOR_RESET)";\
fi
@echo -e "";
.PHONY: info
logs: ## get development logs
$(COMPOSE) logs -f
.PHONY: logs
# Nota bene: we do not use the MANAGE_* shortcut because, for some releases
# (e.g. dogwood), we cannot run the LMS while migrations haven't been
# performed.
migrate: \
check-activate \
check-root-user
migrate: ## perform database migrations
@echo "Booting mysql service..."
$(COMPOSE) up -d mysql
$(WAIT_DB)
$(COMPOSE_RUN) lms python manage.py lms migrate
$(COMPOSE_RUN) cms python manage.py cms migrate
.PHONY: migrate
run: \
check-activate run \
check-root-user \
tree
run: ## start the cms and lms services (nginx + production image)
$(COMPOSE) up -d nginx
@echo "Wait for services to be up..."
$(WAIT_DB)
$(COMPOSE_RUN) dockerize -wait tcp://cms:8000 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://lms:8000 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://nginx:8073 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://nginx:8083 -timeout 60s
.PHONY: run
run-ssl: \
check-activate \
check-root-user \
tree
run-ssl: ## start the cms and lms services over TLS (nginx + production image)
$(COMPOSE_SSL) up -d nginx
@echo "Wait for services to be up..."
$(WAIT_DB)
$(COMPOSE_RUN) dockerize -wait tcp://cms:8000 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://lms:8000 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://nginx:8073 -timeout 60s
$(COMPOSE_RUN) dockerize -wait tcp://nginx:8083 -timeout 60s
.PHONY: run-ssl
stop: ## stop the development servers
$(COMPOSE) stop
.PHONY: stop
superuser: \
check-activate
superuser: ## Create an admin user with password "admin"
@$(COMPOSE) up -d mysql
@echo "Wait for services to be up..."
@$(WAIT_DB)
$(COMPOSE_RUN) lms python manage.py lms createsuperuser
.PHONY: superuser
test: \
test-cms \
test-lms \
test-cms-dev \
test-lms-dev
test: ## test services (production & development)
.PHONY: test
test-cms: ## test the CMS (production) service
@test-service CMS production http://localhost:8083 1.1
.PHONY: test-cms
test-cms-dev: ## test the CMS (development) service
@test-service CMS development http://localhost:8082 1.0
.PHONY: test-cms-dev
test-lms: ## test the LMS (production) service
@test-service LMS production http://localhost:8073 1.1
.PHONY: test-lms
test-lms-dev: ## test the LMS (development) service
@test-service LMS development http://localhost:8072 1.0
.PHONY: test-lms-dev
tree: \
check-activate \
check-root-user \
$(FLAVORED_EDX_RELEASE_PATH)/data/static/production/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/data/static/development/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/data/media/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/data/store/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/data/store/openassessment_submissions/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/data/export/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-demo-course/.keep \
$(FLAVORED_EDX_RELEASE_PATH)/src/edx-platform/.keep
tree: ## create data directories mounted as volumes
.PHONY: tree
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help