Add configs for lms and lms preview running against mongo

This commit is contained in:
Calen Pennington
2012-10-09 10:00:03 -04:00
parent ebf2f7de60
commit b19627ccf3
2 changed files with 13 additions and 5 deletions

View File

@@ -15,11 +15,7 @@ modulestore_options = {
MODULESTORE = {
'default': {
'ENGINE': 'xmodule.modulestore.mongo.DraftMongoModuleStore',
'OPTIONS': modulestore_options
},
'direct': {
'ENGINE': 'xmodule.modulestore.mongo.MongoModuleStore',
'OPTIONS': modulestore_options
}
},
}

View File

@@ -0,0 +1,12 @@
"""
Settings for the LMS that runs alongside the CMS on AWS
"""
from .dev import *
MODULESTORE = {
'default': {
'ENGINE': 'xmodule.modulestore.mongo.DraftMongoModuleStore',
'OPTIONS': modulestore_options
},
}