mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 18:15:09 +00:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
from ..devstack import *
|
|
|
|
INSTALLED_APPS.remove('openedx.core.djangoapps.datadog.apps.DatadogConfig')
|
|
|
|
# Load module store settings from config files
|
|
update_module_store_settings(MODULESTORE, doc_store_settings=DOC_STORE_CONFIG)
|
|
|
|
# Set uploaded media file path
|
|
MEDIA_ROOT = "/openedx/data/uploads/"
|
|
|
|
# Change syslog-based loggers which don't work inside docker containers
|
|
LOGGING['handlers']['local'] = {'class': 'logging.NullHandler'}
|
|
LOGGING['handlers']['tracking'] = {
|
|
'level': 'DEBUG',
|
|
'class': 'logging.StreamHandler',
|
|
'formatter': 'standard',
|
|
}
|
|
|
|
# Fix media files paths
|
|
VIDEO_IMAGE_SETTINGS['STORAGE_KWARGS']['location'] = MEDIA_ROOT
|
|
VIDEO_TRANSCRIPTS_SETTINGS['STORAGE_KWARGS']['location'] = MEDIA_ROOT
|
|
PROFILE_IMAGE_BACKEND['options']['location'] = os.path.join(MEDIA_ROOT, 'profile-images/')
|
|
|
|
ORA2_FILEUPLOAD_BACKEND = 'filesystem'
|
|
ORA2_FILEUPLOAD_ROOT = '/openedx/data/ora2'
|
|
ORA2_FILEUPLOAD_CACHE_NAME = 'ora2-storage'
|
|
|
|
# Create folders if necessary
|
|
import os
|
|
for folder in [LOG_DIR, MEDIA_ROOT, STATIC_ROOT_BASE, ORA2_FILEUPLOAD_ROOT]:
|
|
if not os.path.exists(folder):
|
|
os.makedirs(folder)
|