dev.py 9.98 KB
Newer Older
1 2
"""
This config file runs the simplest dev environment using sqlite, and db-based
3 4 5 6 7
sessions. Assumes structure:

/envroot/
        /db   # This is where it'll write the database file
        /mitx # The location of this repo
8
        /log  # Where we're going to write log files
9
"""
10 11 12 13 14

# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=W0401, W0614

15
from .common import *
16
from logsettings import get_logger_config
17

18
DEBUG = True
19
TEMPLATE_DEBUG = True
20

21

22
MITX_FEATURES['DISABLE_START_DATES'] = False
23
MITX_FEATURES['ENABLE_SQL_TRACKING_LOGS'] = True
24
MITX_FEATURES['SUBDOMAIN_COURSE_LISTINGS'] = False  # Enable to test subdomains--otherwise, want all courses to show up
25
MITX_FEATURES['SUBDOMAIN_BRANDING'] = True
26
MITX_FEATURES['FORCE_UNIVERSITY_DOMAIN'] = None		# show all university courses if in dev (ie don't use HTTP_HOST)
27
MITX_FEATURES['ENABLE_MANUAL_GIT_RELOAD'] = True
28
MITX_FEATURES['ENABLE_PSYCHOMETRICS'] = False    # real-time psychometrics (eg item response theory analysis in instructor dashboard)
29
MITX_FEATURES['ENABLE_INSTRUCTOR_ANALYTICS'] = True
30
MITX_FEATURES['ENABLE_SERVICE_STATUS'] = True
31
MITX_FEATURES['ENABLE_HINTER_INSTRUCTOR_VIEW'] = True
32
MITX_FEATURES['ENABLE_INSTRUCTOR_BETA_DASHBOARD'] = True
33
MITX_FEATURES['MULTIPLE_ENROLLMENT_ROLES'] = True
34
MITX_FEATURES['ENABLE_SHOPPING_CART'] = True
35
MITX_FEATURES['AUTOMATIC_VERIFY_STUDENT_IDENTITY_FOR_TESTING'] = True
36

37
FEEDBACK_SUBMISSION_EMAIL = "dummy@example.com"
38

39 40
WIKI_ENABLED = True

41
LOGGING = get_logger_config(ENV_ROOT / "log",
42
                            logging_env="dev",
43 44
                            local_loglevel="DEBUG",
                            dev_env=True,
45
                            debug=True)
46

47 48 49 50 51 52 53
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': ENV_ROOT / "db" / "mitx.db",
    }
}

54
CACHES = {
55
    # This is the cache used for most things.
56 57 58
    # In staging/prod envs, the sessions also live here.
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
59 60
        'LOCATION': 'mitx_loc_mem_cache',
        'KEY_FUNCTION': 'util.memcache.safe_key',
61 62 63 64 65 66 67 68 69 70 71
    },

    # The general cache is what you get if you use our util.cache. It's used for
    # things like caching the course.xml file for different A/B test groups.
    # We set it to be a DummyCache to force reloading of course.xml in dev.
    # In staging environments, we would grab VERSION from data uploaded by the
    # push process.
    'general': {
        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
        'KEY_PREFIX': 'general',
        'VERSION': 4,
72
        'KEY_FUNCTION': 'util.memcache.safe_key',
73 74 75 76 77 78 79
    },

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
        'LOCATION': '/var/tmp/mongo_metadata_inheritance',
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
80 81 82
    }
}

83

84
XQUEUE_INTERFACE = {
kimth committed
85
    "url": "https://sandbox-xqueue.edx.org",
86
    "django_auth": {
87 88
        "username": "lms",
        "password": "***REMOVED***"
89 90
    },
    "basic_auth": ('anant', 'agarwal'),
91 92
}

93 94 95
# Make the keyedcache startup warnings go away
CACHE_TIMEOUT = 0

96 97
# Dummy secret key for dev
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
98

99

100 101 102 103 104 105 106 107
COURSE_LISTINGS = {
    'default': ['BerkeleyX/CS169.1x/2012_Fall',
                'BerkeleyX/CS188.1x/2012_Fall',
                'HarvardX/CS50x/2012',
                'HarvardX/PH207x/2012_Fall',
                'MITx/3.091x/2012_Fall',
                'MITx/6.002x/2012_Fall',
                'MITx/6.00x/2012_Fall'],
108 109
    'berkeley': ['BerkeleyX/CS169/fa12',
                 'BerkeleyX/CS188/fa12'],
110
    'harvard': ['HarvardX/CS50x/2012H'],
111
    'mit': ['MITx/3.091/MIT_2012_Fall'],
112 113 114
    'sjsu': ['MITx/6.002x-EE98/2012_Fall_SJSU'],
}

115

116 117 118 119 120 121 122
SUBDOMAIN_BRANDING = {
    'sjsu': 'MITx',
    'mit': 'MITx',
    'berkeley': 'BerkeleyX',
    'harvard': 'HarvardX',
}

123 124 125 126
# List of `university` landing pages to display, even though they may not
# have an actual course with that org set
VIRTUAL_UNIVERSITIES = []

127 128 129
# Organization that contain other organizations
META_UNIVERSITIES = {'UTx': ['UTAustinX']}

130 131
COMMENTS_SERVICE_KEY = "PUT_YOUR_API_KEY_HERE"

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
############################## Course static files ##########################
if os.path.isdir(DATA_DIR):
    # Add the full course repo if there is no static directory
    STATICFILES_DIRS += [
        # TODO (cpennington): When courses are stored in a database, this
        # should no longer be added to STATICFILES
        (course_dir, DATA_DIR / course_dir)
        for course_dir in os.listdir(DATA_DIR)
        if (os.path.isdir(DATA_DIR / course_dir) and
            not os.path.isdir(DATA_DIR / course_dir / 'static'))
    ]
    # Otherwise, add only the static directory from the course dir
    STATICFILES_DIRS += [
        # TODO (cpennington): When courses are stored in a database, this
        # should no longer be added to STATICFILES
        (course_dir, DATA_DIR / course_dir / 'static')
        for course_dir in os.listdir(DATA_DIR)
        if (os.path.isdir(DATA_DIR / course_dir / 'static'))
    ]


153 154 155 156
################################# mitx revision string  #####################

MITX_VERSION_STRING = os.popen('cd %s; git describe' % REPO_ROOT).read().strip()

157
############################ Open ended grading config  #####################
Vik Paruchuri committed
158 159 160 161 162 163 164 165 166

OPEN_ENDED_GRADING_INTERFACE = {
    'url' : 'http://127.0.0.1:3033/',
    'username' : 'lms',
    'password' : 'abcd',
    'staff_grading' : 'staff_grading',
    'peer_grading' : 'peer_grading',
    'grading_controller' : 'grading_controller'
}
167

168
############################## LMS Migration ##################################
169
MITX_FEATURES['ENABLE_LMS_MIGRATION'] = True
170
MITX_FEATURES['ACCESS_REQUIRE_STAFF_FOR_COURSE'] = False   # require that user be in the staff_* group to be able to enroll
171
MITX_FEATURES['USE_XQA_SERVER'] = 'http://xqa:server@content-qa.mitx.mit.edu/xqa'
172

173 174
INSTALLED_APPS += ('lms_migration',)

175
LMS_MIGRATION_ALLOWED_IPS = ['127.0.0.1']
176

ichuang committed
177
################################ OpenID Auth #################################
178

ichuang committed
179
MITX_FEATURES['AUTH_USE_OPENID'] = True
180
MITX_FEATURES['AUTH_USE_OPENID_PROVIDER'] = True
ichuang committed
181
MITX_FEATURES['BYPASS_ACTIVATION_EMAIL_FOR_EXTAUTH'] = True
ichuang committed
182

183
INSTALLED_APPS += ('external_auth',)
ichuang committed
184 185 186 187
INSTALLED_APPS += ('django_openid_auth',)

OPENID_CREATE_USERS = False
OPENID_UPDATE_DETAILS_FROM_SREG = True
188
OPENID_SSO_SERVER_URL = 'https://www.google.com/accounts/o8/id'  # TODO: accept more endpoints
ichuang committed
189 190
OPENID_USE_AS_ADMIN_LOGIN = False

191
OPENID_PROVIDER_TRUSTED_ROOTS = ['*']
192

193
######################## MIT Certificates SSL Auth ############################
194

195 196
MITX_FEATURES['AUTH_USE_MIT_CERTIFICATES'] = True

197 198 199 200 201 202 203
################################# CELERY ######################################

# By default don't use a worker, execute tasks as if they were local functions
CELERY_ALWAYS_EAGER = True

################################ DEBUG TOOLBAR ################################

204
INSTALLED_APPS += ('debug_toolbar',)
205 206
MIDDLEWARE_CLASSES += ('django_comment_client.utils.QueryCountDebugMiddleware',
                       'debug_toolbar.middleware.DebugToolbarMiddleware',)
207
INTERNAL_IPS = ('127.0.0.1',)
208 209 210 211

DEBUG_TOOLBAR_PANELS = (
   'debug_toolbar.panels.version.VersionDebugPanel',
   'debug_toolbar.panels.timer.TimerDebugPanel',
212
   'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
213 214 215 216 217
   'debug_toolbar.panels.headers.HeaderDebugPanel',
   'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
   'debug_toolbar.panels.sql.SQLDebugPanel',
   'debug_toolbar.panels.signals.SignalDebugPanel',
   'debug_toolbar.panels.logger.LoggingPanel',
218 219

#  Enabling the profiler has a weird bug as of django-debug-toolbar==0.9.4 and
220 221
#  Django=1.3.1/1.4 where requests to views get duplicated (your method gets
#  hit twice). So you can uncomment when you need to diagnose performance
222 223
#  problems, but you shouldn't leave it on.
#  'debug_toolbar.panels.profiling.ProfilingDebugPanel',
224 225
)

226 227 228
DEBUG_TOOLBAR_CONFIG = {
    'INTERCEPT_REDIRECTS': False
}
229

230
#################### FILE UPLOADS (for discussion forums) #####################
231

232 233
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
MEDIA_ROOT = ENV_ROOT / "uploads"
234 235
MEDIA_URL = "/static/uploads/"
STATICFILES_DIRS.append(("uploads", MEDIA_ROOT))
236 237 238 239
FILE_UPLOAD_TEMP_DIR = ENV_ROOT / "uploads"
FILE_UPLOAD_HANDLERS = (
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
240
)
241

242 243 244
MITX_FEATURES['AUTH_USE_SHIB'] = True
MITX_FEATURES['RESTRICT_ENROLL_BY_REG_METHOD'] = True

245 246
########################### PIPELINE #################################

247
PIPELINE_SASS_ARGUMENTS = '--debug-info --require {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)
248 249

########################## PEARSON TESTING ###########################
250
MITX_FEATURES['ENABLE_PEARSON_LOGIN'] = False
251 252 253

########################## ANALYTICS TESTING ########################

254
ANALYTICS_SERVER_URL = "http://127.0.0.1:9000/"
255
ANALYTICS_API_KEY = ""
256

257 258
##### segment-io  ######

259
# If there's an environment variable set, grab it and turn on Segment.io
260 261 262 263
SEGMENT_IO_LMS_KEY = os.environ.get('SEGMENT_IO_LMS_KEY')
if SEGMENT_IO_LMS_KEY:
    MITX_FEATURES['SEGMENT_IO_LMS'] = True

264 265 266 267 268 269 270
###################### Payment ##############################3

CC_PROCESSOR['CyberSource']['SHARED_SECRET'] = os.environ.get('CYBERSOURCE_SHARED_SECRET', '')
CC_PROCESSOR['CyberSource']['MERCHANT_ID'] = os.environ.get('CYBERSOURCE_MERCHANT_ID', '')
CC_PROCESSOR['CyberSource']['SERIAL_NUMBER'] = os.environ.get('CYBERSOURCE_SERIAL_NUMBER', '')
CC_PROCESSOR['CyberSource']['PURCHASE_ENDPOINT'] = os.environ.get('CYBERSOURCE_PURCHASE_ENDPOINT', '')

271

272
########################## USER API ########################
273
EDX_API_KEY = None
274

275 276 277 278

####################### Shoppingcart ###########################
MITX_FEATURES['ENABLE_SHOPPING_CART'] = True

279 280 281
#####################################################################
# Lastly, see if the developer has any local overrides.
try:
282
    from .private import *      # pylint: disable=F0401
283 284
except ImportError:
    pass