Files
edx-platform/cms/envs/devstack_docker.py
Clinton Blackburn eeac30e197 Disable Forums for Docker devstack
This service is not currently available in Docker devstack.
2017-05-21 11:57:55 -04:00

21 lines
607 B
Python

""" Overrides for Docker-based devstack. """
from .devstack import * # pylint: disable=wildcard-import, unused-wildcard-import
# Docker does not support the syslog socket at /dev/log. Rely on the console.
LOGGING['handlers']['local'] = LOGGING['handlers']['tracking'] = {
'class': 'logging.NullHandler',
}
LOGGING['loggers']['tracking']['handlers'] = ['console']
LMS_ROOT_URL = 'http://edx.devstack.lms:18000'
FEATURES.update({
'ENABLE_COURSEWARE_INDEX': False,
'ENABLE_LIBRARY_INDEX': False,
'ENABLE_DISCUSSION_SERVICE': False,
})
CREDENTIALS_SERVICE_USERNAME = 'credentials_worker'