Commit 83e52905 by Brian Beggs

ADD LMS_BASE and CMS_BASE to devstack_docker config files

parent ceb126ef
...@@ -9,7 +9,10 @@ LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = { ...@@ -9,7 +9,10 @@ LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = {
LOGGING['loggers']['tracking']['handlers'] = ['console'] LOGGING['loggers']['tracking']['handlers'] = ['console']
LMS_ROOT_URL = 'http://edx.devstack.lms:18000' LMS_BASE = 'edx.devstack.lms:18000'
CMS_BASE = 'edx.devstack.cms:18010'
LMS_ROOT_URL = 'http://{}'.format(LMS_BASE)
FEATURES.update({ FEATURES.update({
'ENABLE_COURSEWARE_INDEX': False, 'ENABLE_COURSEWARE_INDEX': False,
......
...@@ -9,9 +9,10 @@ LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = { ...@@ -9,9 +9,10 @@ LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = {
LOGGING['loggers']['tracking']['handlers'] = ['console'] LOGGING['loggers']['tracking']['handlers'] = ['console']
HOST = 'edx.devstack.lms:18000' LMS_BASE = 'edx.devstack.lms:18000'
SITE_NAME = HOST CMS_BASE = 'edx.devstack.cms:18010'
LMS_ROOT_URL = 'http://{}'.format(HOST) SITE_NAME = LMS_BASE
LMS_ROOT_URL = 'http://{}'.format(LMS_BASE)
ECOMMERCE_PUBLIC_URL_ROOT = 'http://localhost:18130' ECOMMERCE_PUBLIC_URL_ROOT = 'http://localhost:18130'
ECOMMERCE_API_URL = 'http://edx.devstack.ecommerce:18130/api/v2' ECOMMERCE_API_URL = 'http://edx.devstack.ecommerce:18130/api/v2'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment