Skip to content
Snippets Groups Projects
Commit 284f0d6a authored by Calen Pennington's avatar Calen Pennington
Browse files

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 d4405375
No related branches found
Tags release-2021-07-14-19.10
No related merge requests found
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment