2017-12-26 00:16:35 +00:00
|
|
|
.PHONY: all configure build migrate assets up daemon
|
|
|
|
|
2018-04-25 19:48:15 +00:00
|
|
|
USER_ID ?= $$(id -u)
|
|
|
|
DOCKER_COMPOSE_RUN = docker-compose run --rm -e USERID=$(USER_ID)
|
2018-04-24 06:18:58 +00:00
|
|
|
EDX_PLATFORM_SETTINGS ?= production
|
2018-04-21 10:41:34 +00:00
|
|
|
DOCKER_COMPOSE_RUN += -e SETTINGS=$(EDX_PLATFORM_SETTINGS)
|
2018-04-09 17:16:58 +00:00
|
|
|
ifneq ($(EDX_PLATFORM_PATH),)
|
|
|
|
DOCKER_COMPOSE_RUN += --volume="$(EDX_PLATFORM_PATH):/openedx/edx-platform"
|
|
|
|
endif
|
|
|
|
|
|
|
|
DOCKER_COMPOSE_RUN_LMS = $(DOCKER_COMPOSE_RUN) -p 8000:8000 lms
|
|
|
|
DOCKER_COMPOSE_RUN_CMS = $(DOCKER_COMPOSE_RUN) -p 8001:8001 cms
|
|
|
|
|
2017-12-26 00:16:35 +00:00
|
|
|
all: configure build migrate assets daemon
|
|
|
|
|
2018-04-09 17:16:58 +00:00
|
|
|
##################### Bootstrapping
|
2017-12-26 00:16:35 +00:00
|
|
|
|
|
|
|
configure:
|
|
|
|
./configure
|
|
|
|
|
|
|
|
build:
|
|
|
|
docker-compose build
|
|
|
|
|
2017-07-19 07:42:42 +00:00
|
|
|
migrate:
|
2018-04-09 17:16:58 +00:00
|
|
|
$(DOCKER_COMPOSE_RUN_LMS) bash -c "wait-for-greenlight.sh && ./manage.py lms migrate"
|
|
|
|
$(DOCKER_COMPOSE_RUN_CMS) bash -c "wait-for-greenlight.sh && ./manage.py cms migrate"
|
2017-12-26 00:16:35 +00:00
|
|
|
|
2017-07-19 07:42:42 +00:00
|
|
|
assets:
|
2018-04-21 10:41:34 +00:00
|
|
|
$(DOCKER_COMPOSE_RUN_LMS) paver update_assets lms --settings=$(EDX_PLATFORM_SETTINGS)
|
|
|
|
$(DOCKER_COMPOSE_RUN_CMS) paver update_assets cms --settings=$(EDX_PLATFORM_SETTINGS)
|
2017-12-26 00:16:35 +00:00
|
|
|
|
2018-04-09 17:16:58 +00:00
|
|
|
##################### Running
|
2017-12-26 00:16:35 +00:00
|
|
|
|
|
|
|
up:
|
|
|
|
docker-compose up
|
|
|
|
|
|
|
|
daemon:
|
|
|
|
docker-compose up -d && \
|
|
|
|
echo "Daemon is up and running"
|
|
|
|
|
|
|
|
stop:
|
|
|
|
docker-compose stop
|
|
|
|
|
2018-04-09 17:16:58 +00:00
|
|
|
##################### Extra
|
2017-09-19 08:54:45 +00:00
|
|
|
|
|
|
|
import-demo-course:
|
2018-04-09 17:16:58 +00:00
|
|
|
$(DOCKER_COMPOSE_RUN_CMS) /bin/bash -c "git clone https://github.com/edx/edx-demo-course ../edx-demo-course && git -C ../edx-demo-course checkout open-release/ginkgo.master && python ./manage.py cms import ../data ../edx-demo-course"
|
2018-01-29 16:18:37 +00:00
|
|
|
|
|
|
|
create-staff-user:
|
2018-04-09 17:16:58 +00:00
|
|
|
$(DOCKER_COMPOSE_RUN_LMS) /bin/bash -c "./manage.py lms manage_user --superuser --staff ${USERNAME} ${EMAIL} && ./manage.py lms changepassword ${USERNAME}"
|
|
|
|
|
|
|
|
|
|
|
|
##################### Development
|
|
|
|
|
|
|
|
lms:
|
|
|
|
$(DOCKER_COMPOSE_RUN_LMS) bash
|
|
|
|
cms:
|
|
|
|
$(DOCKER_COMPOSE_RUN_CMS) bash
|
|
|
|
|
|
|
|
lms-shell:
|
|
|
|
$(DOCKER_COMPOSE_RUN_LMS) ./manage.py lms shell
|
|
|
|
cms-shell:
|
|
|
|
$(DOCKER_COMPOSE_RUN_LMS) ./manage.py cms shell
|