mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-23 05:38:23 +00:00
Simplify modulestore configuration
This commit is contained in:
parent
b6aacd4812
commit
199626c434
@ -31,43 +31,5 @@
|
|||||||
"PORT": "3306",
|
"PORT": "3306",
|
||||||
"ATOMIC_REQUESTS": true
|
"ATOMIC_REQUESTS": true
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"MODULESTORE": {
|
|
||||||
"default": {
|
|
||||||
"ENGINE": "xmodule.modulestore.mixed.MixedModuleStore",
|
|
||||||
"OPTIONS": {
|
|
||||||
"mappings": {},
|
|
||||||
"stores": [
|
|
||||||
{
|
|
||||||
"NAME": "split",
|
|
||||||
"ENGINE": "xmodule.modulestore.split_mongo.split_draft.DraftVersioningModuleStore",
|
|
||||||
"DOC_STORE_CONFIG": {
|
|
||||||
"host": "mongodb",
|
|
||||||
"db": "xmodule",
|
|
||||||
"collection": "modulestore"
|
|
||||||
},
|
|
||||||
"OPTIONS": {
|
|
||||||
"default_class": "xmodule.hidden_module.HiddenDescriptor",
|
|
||||||
"fs_root": "/openedx/data",
|
|
||||||
"render_template": "edxmako.shortcuts.render_to_string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"NAME": "draft",
|
|
||||||
"ENGINE": "xmodule.modulestore.mongo.DraftMongoModuleStore",
|
|
||||||
"DOC_STORE_CONFIG": {
|
|
||||||
"host": "mongodb",
|
|
||||||
"db": "xmodule",
|
|
||||||
"collection": "modulestore"
|
|
||||||
},
|
|
||||||
"OPTIONS": {
|
|
||||||
"default_class": "xmodule.hidden_module.HiddenDescriptor",
|
|
||||||
"fs_root": "/opt/openedx/data",
|
|
||||||
"render_template": "edxmako.shortcuts.render_to_string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
from .aws import *
|
from .aws import *
|
||||||
|
|
||||||
|
update_module_store_settings(MODULESTORE, doc_store_settings=DOC_STORE_CONFIG)
|
||||||
|
|
||||||
MEDIA_ROOT = "/openedx/uploads/"
|
MEDIA_ROOT = "/openedx/uploads/"
|
||||||
FEATURES['ENABLE_DISCUSSION_SERVICE'] = False
|
FEATURES['ENABLE_DISCUSSION_SERVICE'] = False
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user