Commit 74602b7b by Calen Pennington

Point at a test_data directory for testing

parent 063617fd
......@@ -16,6 +16,15 @@ INSTALLED_APPS = [
if not app.startswith('askbot')
]
COURSES_ROOT = PROJECT_ROOT / "test_data"
DATA_DIR = COURSES_ROOT
MAKO_TEMPLATES['course'] = [DATA_DIR]
MAKO_TEMPLATES['sections'] = [DATA_DIR / 'sections']
MAKO_TEMPLATES['custom_tags'] = [DATA_DIR / 'custom_tags']
MAKO_TEMPLATES['main'] = [PROJECT_ROOT / 'templates',
DATA_DIR / 'info',
DATA_DIR / 'problems']
LOGGING = logsettings.get_logger_config(PROJECT_ROOT / "log",
logging_env="dev",
tracking_filename="tracking.log",
......
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