Commit 6c1f0084 by Calen Pennington

Make the lms running alongside the CAS in dev point to the same contentstore,…

Make the lms running alongside the CAS in dev point to the same contentstore, and server up static content
parent 6f8d52e3
......@@ -19,3 +19,11 @@ MODULESTORE = {
'OPTIONS': modulestore_options
},
}
CONTENTSTORE = {
'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore',
'OPTIONS': {
'host': 'localhost',
'db' : 'xcontent',
}
}
......@@ -340,6 +340,7 @@ TEMPLATE_LOADERS = (
)
MIDDLEWARE_CLASSES = (
'contentserver.middleware.StaticContentServer',
'django_comment_client.middleware.AjaxExceptionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment