diff --git a/lms/envs/dev_mongo.py b/lms/envs/dev_mongo.py index f690032aed..1c4980a538 100644 --- a/lms/envs/dev_mongo.py +++ b/lms/envs/dev_mongo.py @@ -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, } } }