Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.core
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ MOUNT_TYPE=-nfs
ENABLE_PROGS=true
ENABLE_B2B=false
ENABLE_MKTG=true
ENABLE_EDX=true
ENABLE_EDX=false

ENABLE_STATE_MANAGER=true
ENABLE_STATE_MANAGER=false
ENABLE_JUDGE=false
ENABLE_ANALYTICS=false
ENABLE_AUTH=false
Expand Down
10 changes: 5 additions & 5 deletions provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ docker exec -i edx.devstack.mongo mongosh < mongo-provision.js

echo -e "MySQL ready"

if $ENABLE_EDX; then
./provision-lms.sh
# Nothing special needed for studio
docker-compose `echo ${DOCKER_COMPOSE_FILES}` up -d studio
fi


if $ENABLE_PROGS; then
Expand Down Expand Up @@ -81,3 +76,8 @@ fi
docker image prune -f

echo -e "${GREEN}Provisioning complete!${NC}"
if $ENABLE_EDX; then
./provision-lms.sh
# Nothing special needed for studio
docker-compose `echo ${DOCKER_COMPOSE_FILES}` up -d studio