add options to dev_mongo env

This commit is contained in:
Victor Shnayder
2012-07-18 16:14:34 -04:00
committed by Calen Pennington
parent 49e8d08c1e
commit ba733fa5d1

View File

@@ -3,6 +3,8 @@ This config file runs the dev environment, but with mongo as the datastore
"""
from .dev import *
GITHUB_REPO_ROOT = ENV_ROOT / "data"
MODULESTORE = {
'default': {
'ENGINE': 'xmodule.modulestore.mongo.MongoModuleStore',
@@ -11,6 +13,7 @@ MODULESTORE = {
'host': 'localhost',
'db': 'xmodule',
'collection': 'modulestore',
'fs_root': GITHUB_REPO_ROOT,
}
}
}