dev.py 6.3 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
from .common import *
11
from logsettings import get_logger_config
12

13
DEBUG = True
14
TEMPLATE_DEBUG = True
15

16

17
MITX_FEATURES['DISABLE_START_DATES'] = True
18
MITX_FEATURES['ENABLE_SQL_TRACKING_LOGS'] = True
19
MITX_FEATURES['SUBDOMAIN_COURSE_LISTINGS'] = False  # Enable to test subdomains--otherwise, want all courses to show up
20
MITX_FEATURES['SUBDOMAIN_BRANDING'] = True
21
MITX_FEATURES['FORCE_UNIVERSITY_DOMAIN'] = None		# show all university courses if in dev (ie don't use HTTP_HOST)
22
MITX_FEATURES['ENABLE_MANUAL_GIT_RELOAD'] = True
23
MITX_FEATURES['ENABLE_PSYCHOMETRICS'] = False    # real-time psychometrics (eg item response theory analysis in instructor dashboard)
24

25

26 27
WIKI_ENABLED = True

28
LOGGING = get_logger_config(ENV_ROOT / "log",
29
                            logging_env="dev",
30 31
                            local_loglevel="DEBUG",
                            dev_env=True,
32
                            debug=True)
33

34 35 36 37 38 39 40
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': ENV_ROOT / "db" / "mitx.db",
    }
}

41
CACHES = {
42
    # This is the cache used for most things. 
43 44 45
    # In staging/prod envs, the sessions also live here.
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
46 47
        'LOCATION': 'mitx_loc_mem_cache',
        'KEY_FUNCTION': 'util.memcache.safe_key',
48 49 50 51 52 53 54 55 56 57 58
    },

    # 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,
59
        'KEY_FUNCTION': 'util.memcache.safe_key',
60 61 62
    }
}

63

64
XQUEUE_INTERFACE = {
kimth committed
65
    "url": "https://sandbox-xqueue.edx.org",
66
    "django_auth": {
67 68
        "username": "lms",
        "password": "***REMOVED***"
69 70
    },
    "basic_auth": ('anant', 'agarwal'),
71 72
}

73 74 75
# Make the keyedcache startup warnings go away
CACHE_TIMEOUT = 0

76 77
# Dummy secret key for dev
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
78

79

80 81 82 83 84 85 86 87
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'],
88 89
    'berkeley': ['BerkeleyX/CS169/fa12',
                 'BerkeleyX/CS188/fa12'],
90
    'harvard': ['HarvardX/CS50x/2012H'],
91
    'mit': ['MITx/3.091/MIT_2012_Fall'],
92 93 94
    'sjsu': ['MITx/6.002x-EE98/2012_Fall_SJSU'],
}

95

96 97 98 99 100 101 102
SUBDOMAIN_BRANDING = {
    'sjsu': 'MITx',
    'mit': 'MITx',
    'berkeley': 'BerkeleyX',
    'harvard': 'HarvardX',
}

103 104 105 106
# List of `university` landing pages to display, even though they may not
# have an actual course with that org set
VIRTUAL_UNIVERSITIES = []

107 108
COMMENTS_SERVICE_KEY = "PUT_YOUR_API_KEY_HERE"

109 110


111 112
################################ LMS Migration #################################
MITX_FEATURES['ENABLE_LMS_MIGRATION'] = True
113
MITX_FEATURES['ACCESS_REQUIRE_STAFF_FOR_COURSE'] = False   # require that user be in the staff_* group to be able to enroll
114
MITX_FEATURES['USE_XQA_SERVER'] = 'http://xqa:server@content-qa.mitx.mit.edu/xqa'
115

116 117
INSTALLED_APPS += ('lms_migration',)

118
LMS_MIGRATION_ALLOWED_IPS = ['127.0.0.1']
119

ichuang committed
120 121
################################ OpenID Auth #################################
MITX_FEATURES['AUTH_USE_OPENID'] = True
122
MITX_FEATURES['AUTH_USE_OPENID_PROVIDER'] = True
ichuang committed
123
MITX_FEATURES['BYPASS_ACTIVATION_EMAIL_FOR_EXTAUTH'] = True
ichuang committed
124

125
INSTALLED_APPS += ('external_auth',)
ichuang committed
126 127 128 129 130 131 132
INSTALLED_APPS += ('django_openid_auth',)

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

133
OPENID_PROVIDER_TRUSTED_ROOTS = ['*']
134

135
################################ MIT Certificates SSL Auth #################################
136

137 138
MITX_FEATURES['AUTH_USE_MIT_CERTIFICATES'] = True

139
################################ DEBUG TOOLBAR #################################
140
INSTALLED_APPS += ('debug_toolbar',)
141 142
MIDDLEWARE_CLASSES += ('django_comment_client.utils.QueryCountDebugMiddleware',
                       'debug_toolbar.middleware.DebugToolbarMiddleware',)
143
INTERNAL_IPS = ('127.0.0.1',)
144 145 146 147

DEBUG_TOOLBAR_PANELS = (
   'debug_toolbar.panels.version.VersionDebugPanel',
   'debug_toolbar.panels.timer.TimerDebugPanel',
148
   'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
149 150 151 152 153
   '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',
154 155

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

162 163 164
DEBUG_TOOLBAR_CONFIG = {
    'INTERCEPT_REDIRECTS': False
}
165
############################ FILE UPLOADS (for discussion forums) #############################
166 167
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
MEDIA_ROOT = ENV_ROOT / "uploads"
168 169
MEDIA_URL = "/static/uploads/"
STATICFILES_DIRS.append(("uploads", MEDIA_ROOT))
170 171 172 173
FILE_UPLOAD_TEMP_DIR = ENV_ROOT / "uploads"
FILE_UPLOAD_HANDLERS = (
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
174
)
175 176 177

########################### PIPELINE #################################

178
PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)
179 180 181 182 183

########################## PEARSON TESTING ###########################
MITX_FEATURES['ENABLE_PEARSON_HACK_TEST'] = True
PEARSON_TEST_USER = "pearsontest"
PEARSON_TEST_PASSWORD = "12345"