dev.py 9.51 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

17
DEBUG = True
18
TEMPLATE_DEBUG = True
19

20
HTTPS = 'off'
21 22 23 24 25 26 27 28 29 30
FEATURES['DISABLE_START_DATES'] = False
FEATURES['ENABLE_SQL_TRACKING_LOGS'] = True
FEATURES['ENABLE_MANUAL_GIT_RELOAD'] = 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
FEATURES['ENABLE_SHOPPING_CART'] = True
FEATURES['AUTOMATIC_VERIFY_STUDENT_IDENTITY_FOR_TESTING'] = True
FEATURES['ENABLE_S3_GRADE_DOWNLOADS'] = True
31
FEATURES['ENABLE_PAYMENT_FAKE'] = True
32

33

34
FEEDBACK_SUBMISSION_EMAIL = "dummy@example.com"
35

36 37
WIKI_ENABLED = True

swdanielli committed
38 39 40 41 42
DJFS = {
    'type': 'osfs',
    'directory_root': 'lms/static/djpyfs',
    'url_root': '/static/djpyfs'
}
swdanielli committed
43

Julia Hansbrough committed
44 45
# 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
46 47 48
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
49
        'NAME': ENV_ROOT / "db" / "edx.db",
50
        'ATOMIC_REQUESTS': True,
51 52 53
    }
}

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
        'LOCATION': 'edx_loc_mem_cache',
60
        '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
    },
    'loc_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_location_mem_cache',
    },
85 86 87 88
    'course_structure_cache': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
        'LOCATION': 'edx_course_structure_mem_cache',
    },
89 90
}

91

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

101 102 103
# Make the keyedcache startup warnings go away
CACHE_TIMEOUT = 0

104 105
# Dummy secret key for dev
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
106

107

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

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
################################# edx-platform revision string  #####################
154

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

157
############################## LMS Migration ##################################
158
FEATURES['ENABLE_LMS_MIGRATION'] = True
159
FEATURES['XQA_SERVER'] = 'http://xqa:server@content-qa.edX.mit.edu/xqa'
160

161 162
INSTALLED_APPS += ('lms_migration',)

163
LMS_MIGRATION_ALLOWED_IPS = ['127.0.0.1']
164

ichuang committed
165
################################ OpenID Auth #################################
166

167 168 169
FEATURES['AUTH_USE_OPENID'] = True
FEATURES['AUTH_USE_OPENID_PROVIDER'] = True
FEATURES['BYPASS_ACTIVATION_EMAIL_FOR_EXTAUTH'] = True
ichuang committed
170 171 172

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

176
OPENID_PROVIDER_TRUSTED_ROOTS = ['*']
177

178 179 180
############################## OAUTH2 Provider ################################
FEATURES['ENABLE_OAUTH2_PROVIDER'] = True

181
######################## MIT Certificates SSL Auth ############################
182

183
FEATURES['AUTH_USE_CERTIFICATES'] = False
184

185 186 187 188
########################### External REST APIs #################################
FEATURES['ENABLE_MOBILE_REST_API'] = True
FEATURES['ENABLE_VIDEO_ABSTRACTION_LAYER_API'] = True

189 190 191 192 193 194 195
################################# CELERY ######################################

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

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

196
INSTALLED_APPS += ('debug_toolbar', 'djpyfs',)
swdanielli committed
197 198 199 200
MIDDLEWARE_CLASSES += (
    'django_comment_client.utils.QueryCountDebugMiddleware',
    'debug_toolbar.middleware.DebugToolbarMiddleware',
)
201
INTERNAL_IPS = ('127.0.0.1',)
202 203

DEBUG_TOOLBAR_PANELS = (
204 205 206 207 208 209 210 211 212
    'debug_toolbar.panels.versions.VersionsPanel',
    'debug_toolbar.panels.timer.TimerPanel',
    'debug_toolbar.panels.settings.SettingsPanel',
    'debug_toolbar.panels.headers.HeadersPanel',
    'debug_toolbar.panels.request.RequestPanel',
    'debug_toolbar.panels.sql.SQLPanel',
    'debug_toolbar.panels.signals.SignalsPanel',
    'debug_toolbar.panels.logging.LoggingPanel',
    'debug_toolbar.panels.profiling.ProfilingPanel',
213 214
)

215
#################### FILE UPLOADS (for discussion forums) #####################
216

217 218
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
MEDIA_ROOT = ENV_ROOT / "uploads"
219 220
MEDIA_URL = "/static/uploads/"
STATICFILES_DIRS.append(("uploads", MEDIA_ROOT))
221 222 223 224
FILE_UPLOAD_TEMP_DIR = ENV_ROOT / "uploads"
FILE_UPLOAD_HANDLERS = (
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
225
)
226

227 228
FEATURES['AUTH_USE_SHIB'] = True
FEATURES['RESTRICT_ENROLL_BY_REG_METHOD'] = True
229

230 231
########################### PIPELINE #################################

232
PIPELINE_SASS_ARGUMENTS = '--debug-info'
233

234 235
########################## ANALYTICS TESTING ########################

236
ANALYTICS_SERVER_URL = "http://127.0.0.1:9000/"
237
ANALYTICS_API_KEY = ""
238

239
##### Segment  ######
240

241
# If there's an environment variable set, grab it
242
LMS_SEGMENT_KEY = os.environ.get('SEGMENT_KEY')
243

244
###################### Payment ######################
245 246 247 248

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

251 252 253 254 255
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/'

256
########################## USER API ##########################
257
EDX_API_KEY = None
258

259
####################### Shoppingcart ###########################
260
FEATURES['ENABLE_SHOPPING_CART'] = True
261

262 263 264
### This enables the Metrics tab for the Instructor dashboard ###########
FEATURES['CLASS_DASHBOARD'] = True

265 266 267
### This settings is for the course registration code length ############
REGISTRATION_CODE_LENGTH = 8

268 269 270
#####################################################################
# Lastly, see if the developer has any local overrides.
try:
271
    from .private import *      # pylint: disable=import-error
272 273
except ImportError:
    pass