* Note: This doesn't run yet * add config file for lms on mongo * Some comment additions and cleanups
17 lines
407 B
Python
17 lines
407 B
Python
"""
|
|
This config file runs the dev environment, but with mongo as the datastore
|
|
"""
|
|
from .dev import *
|
|
|
|
MODULESTORE = {
|
|
'default': {
|
|
'ENGINE': 'xmodule.modulestore.mongo.MongoModuleStore',
|
|
'OPTIONS': {
|
|
'default_class': 'xmodule.raw_module.RawDescriptor',
|
|
'host': 'localhost',
|
|
'db': 'xmodule',
|
|
'collection': 'modulestore',
|
|
}
|
|
}
|
|
}
|