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

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

# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
13
# pylint: disable=wildcard-import, unused-wildcard-import
14

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

18
DEBUG = True
19
TEMPLATE_DEBUG = True
20

21
HTTPS = 'off'
22 23 24 25 26 27 28 29 30 31 32 33
FEATURES['DISABLE_START_DATES'] = False
FEATURES['ENABLE_SQL_TRACKING_LOGS'] = True
FEATURES['SUBDOMAIN_COURSE_LISTINGS'] = False  # Enable to test subdomains--otherwise, want all courses to show up
FEATURES['SUBDOMAIN_BRANDING'] = True
FEATURES['FORCE_UNIVERSITY_DOMAIN'] = None		# show all university courses if in dev (ie don't use HTTP_HOST)
FEATURES['ENABLE_MANUAL_GIT_RELOAD'] = True
FEATURES['ENABLE_PSYCHOMETRICS'] = False    # real-time psychometrics (eg item response theory analysis in instructor dashboard)
FEATURES['ENABLE_INSTRUCTOR_ANALYTICS'] = True
FEATURES['ENABLE_SERVICE_STATUS'] = True
FEATURES['ENABLE_INSTRUCTOR_EMAIL'] = True     # Enable email for all Studio courses
FEATURES['REQUIRE_COURSE_EMAIL_AUTH'] = False  # Give all courses email (don't require django-admin perms)
FEATURES['ENABLE_HINTER_INSTRUCTOR_VIEW'] = True
34
FEATURES['ENABLE_INSTRUCTOR_LEGACY_DASHBOARD'] = True
35 36 37 38
FEATURES['MULTIPLE_ENROLLMENT_ROLES'] = True
FEATURES['ENABLE_SHOPPING_CART'] = True
FEATURES['AUTOMATIC_VERIFY_STUDENT_IDENTITY_FOR_TESTING'] = True
FEATURES['ENABLE_S3_GRADE_DOWNLOADS'] = True
39
FEATURES['IS_EDX_DOMAIN'] = True  # Is this an edX-owned domain? (used on instructor dashboard)
40
FEATURES['ENABLE_PAYMENT_FAKE'] = True
41

42

43
FEEDBACK_SUBMISSION_EMAIL = "dummy@example.com"
44

45 46
WIKI_ENABLED = True

swdanielli committed
47 48 49 50 51
DJFS = {
    'type': 'osfs',
    'directory_root': 'lms/static/djpyfs',
    'url_root': '/static/djpyfs'
}
swdanielli committed
52

Julia Hansbrough committed
53 54
# If there is a database called 'read_replica', you can use the use_read_replica_if_available
# function in util/query.py, which is useful for very large database reads
55 56 57
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
58
        'NAME': ENV_ROOT / "db" / "edx.db",
59 60 61
    }
}

62
CACHES = {
63
    # This is the cache used for most things.
64 65 66
    # In staging/prod envs, the sessions also live here.
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
67
        'LOCATION': 'edx_loc_mem_cache',
68
        'KEY_FUNCTION': 'util.memcache.safe_key',
69 70 71 72 73 74 75 76 77 78 79
    },

    # 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,
80
        'KEY_FUNCTION': 'util.memcache.safe_key',
81 82 83 84 85 86 87
    },

    'mongo_metadata_inheritance': {
        'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache',
        'LOCATION': '/var/tmp/mongo_metadata_inheritance',
        'TIMEOUT': 300,
        'KEY_FUNCTION': 'util.memcache.safe_key',
88 89 90 91 92
    },
    'loc_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_location_mem_cache',
    },
93 94
}

95

96
XQUEUE_INTERFACE = {
kimth committed
97
    "url": "https://sandbox-xqueue.edx.org",
98
    "django_auth": {
99 100
        "username": "lms",
        "password": "***REMOVED***"
101 102
    },
    "basic_auth": ('anant', 'agarwal'),
103 104
}

105 106 107
# Make the keyedcache startup warnings go away
CACHE_TIMEOUT = 0

108 109
# Dummy secret key for dev
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
110

111

112 113 114 115 116 117 118 119
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'],
120 121
    'berkeley': ['BerkeleyX/CS169/fa12',
                 'BerkeleyX/CS188/fa12'],
122
    'harvard': ['HarvardX/CS50x/2012H'],
123
    'mit': ['MITx/3.091/MIT_2012_Fall'],
124 125 126
    'sjsu': ['MITx/6.002x-EE98/2012_Fall_SJSU'],
}

127

128 129 130 131 132
SUBDOMAIN_BRANDING = {
    'sjsu': 'MITx',
    'mit': 'MITx',
    'berkeley': 'BerkeleyX',
    'harvard': 'HarvardX',
133 134
    'openedx': 'openedx',
    'edge': 'edge',
135 136
}

137 138 139 140
# List of `university` landing pages to display, even though they may not
# have an actual course with that org set
VIRTUAL_UNIVERSITIES = []

141 142 143
# Organization that contain other organizations
META_UNIVERSITIES = {'UTx': ['UTAustinX']}

144 145
COMMENTS_SERVICE_KEY = "PUT_YOUR_API_KEY_HERE"

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
############################## 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'))
    ]


167
################################# edx-platform revision string  #####################
168

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

171
############################ Open ended grading config  #####################
Vik Paruchuri committed
172 173

OPEN_ENDED_GRADING_INTERFACE = {
174 175 176 177 178 179
    'url': 'http://127.0.0.1:3033/',
    'username': 'lms',
    'password': 'abcd',
    'staff_grading': 'staff_grading',
    'peer_grading': 'peer_grading',
    'grading_controller': 'grading_controller'
Vik Paruchuri committed
180
}
181

182
############################## LMS Migration ##################################
183 184 185
FEATURES['ENABLE_LMS_MIGRATION'] = True
FEATURES['ACCESS_REQUIRE_STAFF_FOR_COURSE'] = False   # require that user be in the staff_* group to be able to enroll
FEATURES['USE_XQA_SERVER'] = 'http://xqa:server@content-qa.edX.mit.edu/xqa'
186

187 188
INSTALLED_APPS += ('lms_migration',)

189
LMS_MIGRATION_ALLOWED_IPS = ['127.0.0.1']
190

ichuang committed
191
################################ OpenID Auth #################################
192

193 194 195
FEATURES['AUTH_USE_OPENID'] = True
FEATURES['AUTH_USE_OPENID_PROVIDER'] = True
FEATURES['BYPASS_ACTIVATION_EMAIL_FOR_EXTAUTH'] = True
ichuang committed
196

197
INSTALLED_APPS += ('external_auth',)
ichuang committed
198 199 200 201
INSTALLED_APPS += ('django_openid_auth',)

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

205
OPENID_PROVIDER_TRUSTED_ROOTS = ['*']
206

207 208 209
############################## OAUTH2 Provider ################################
FEATURES['ENABLE_OAUTH2_PROVIDER'] = True

210
######################## MIT Certificates SSL Auth ############################
211

212
FEATURES['AUTH_USE_CERTIFICATES'] = False
213

214 215 216 217
########################### External REST APIs #################################
FEATURES['ENABLE_MOBILE_REST_API'] = True
FEATURES['ENABLE_VIDEO_ABSTRACTION_LAYER_API'] = True

218 219 220 221 222 223 224
################################# CELERY ######################################

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

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

225
INSTALLED_APPS += ('debug_toolbar', 'djpyfs',)
swdanielli committed
226 227 228 229
MIDDLEWARE_CLASSES += (
    'django_comment_client.utils.QueryCountDebugMiddleware',
    'debug_toolbar.middleware.DebugToolbarMiddleware',
)
230
INTERNAL_IPS = ('127.0.0.1',)
231 232

DEBUG_TOOLBAR_PANELS = (
233 234 235 236 237 238 239 240 241 242 243 244 245 246
    'debug_toolbar.panels.version.VersionDebugPanel',
    'debug_toolbar.panels.timer.TimerDebugPanel',
    'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
    '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',

    # Enabling the profiler has a weird bug as of django-debug-toolbar==0.9.4 and
    # 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
    # problems, but you shouldn't leave it on.
    # 'debug_toolbar.panels.profiling.ProfilingDebugPanel',
247 248
)

249 250 251
DEBUG_TOOLBAR_CONFIG = {
    'INTERCEPT_REDIRECTS': False
}
252

253
#################### FILE UPLOADS (for discussion forums) #####################
254

255 256
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
MEDIA_ROOT = ENV_ROOT / "uploads"
257 258
MEDIA_URL = "/static/uploads/"
STATICFILES_DIRS.append(("uploads", MEDIA_ROOT))
259 260 261 262
FILE_UPLOAD_TEMP_DIR = ENV_ROOT / "uploads"
FILE_UPLOAD_HANDLERS = (
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
263
)
264

265 266
FEATURES['AUTH_USE_SHIB'] = True
FEATURES['RESTRICT_ENROLL_BY_REG_METHOD'] = True
267

268 269
########################### PIPELINE #################################

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

272 273
########################## ANALYTICS TESTING ########################

274
ANALYTICS_SERVER_URL = "http://127.0.0.1:9000/"
275
ANALYTICS_API_KEY = ""
276

277
##### Segment.io  ######
278

279
# If there's an environment variable set, grab it and turn on Segment.io
280 281
SEGMENT_IO_LMS_KEY = os.environ.get('SEGMENT_IO_LMS_KEY')
if SEGMENT_IO_LMS_KEY:
282
    FEATURES['SEGMENT_IO_LMS'] = True
283

284
###################### Payment ######################
285 286 287 288

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', '')
289
CC_PROCESSOR['CyberSource']['PURCHASE_ENDPOINT'] = '/shoppingcart/payment_fake/'
290

291 292 293 294 295
CC_PROCESSOR['CyberSource2']['SECRET_KEY'] = os.environ.get('CYBERSOURCE_SECRET_KEY', '')
CC_PROCESSOR['CyberSource2']['ACCESS_KEY'] = os.environ.get('CYBERSOURCE_ACCESS_KEY', '')
CC_PROCESSOR['CyberSource2']['PROFILE_ID'] = os.environ.get('CYBERSOURCE_PROFILE_ID', '')
CC_PROCESSOR['CyberSource2']['PURCHASE_ENDPOINT'] = '/shoppingcart/payment_fake/'

296
########################## USER API ##########################
297
EDX_API_KEY = None
298

299
####################### Shoppingcart ###########################
300
FEATURES['ENABLE_SHOPPING_CART'] = True
301

302 303 304
### This enables the Metrics tab for the Instructor dashboard ###########
FEATURES['CLASS_DASHBOARD'] = True

305 306 307
### This settings is for the course registration code length ############
REGISTRATION_CODE_LENGTH = 8

308 309 310
#####################################################################
# Lastly, see if the developer has any local overrides.
try:
311
    from .private import *      # pylint: disable=import-error
312 313
except ImportError:
    pass