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

13
DEBUG = True
14
TEMPLATE_DEBUG = True
15

16
MITX_FEATURES['DISABLE_START_DATES'] = True
17
MITX_FEATURES['ENABLE_SQL_TRACKING_LOGS'] = True
18

19 20
WIKI_ENABLED = True

21
LOGGING = get_logger_config(ENV_ROOT / "log",
22 23 24
                            logging_env="dev",
                            tracking_filename="tracking.log",
                            debug=True)
25

26 27 28 29 30 31 32
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': ENV_ROOT / "db" / "mitx.db",
    }
}

33
CACHES = {
34
    # This is the cache used for most things. Askbot will not work without a
35 36 37 38
    # functioning cache -- it relies on caching to load its settings in places.
    # In staging/prod envs, the sessions also live here.
    'default': {
        'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
39 40
        'LOCATION': 'mitx_loc_mem_cache',
        'KEY_FUNCTION': 'util.memcache.safe_key',
41 42 43 44 45 46 47 48 49 50 51
    },

    # 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,
52
        'KEY_FUNCTION': 'util.memcache.safe_key',
53 54 55
    }
}

56 57 58
# Make the keyedcache startup warnings go away
CACHE_TIMEOUT = 0

59 60
# Dummy secret key for dev
SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
61

62 63
################################ LMS Migration #################################
MITX_FEATURES['ENABLE_LMS_MIGRATION'] = True
64
MITX_FEATURES['ACCESS_REQUIRE_STAFF_FOR_COURSE'] = False   # require that user be in the staff_* group to be able to enroll
65

66
LMS_MIGRATION_ALLOWED_IPS = ['127.0.0.1']
67

ichuang committed
68 69
################################ OpenID Auth #################################
MITX_FEATURES['AUTH_USE_OPENID'] = True
ichuang committed
70
MITX_FEATURES['BYPASS_ACTIVATION_EMAIL_FOR_EXTAUTH'] = True
ichuang committed
71 72 73 74 75 76 77 78 79

INSTALLED_APPS += ('external_auth',) 
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

80 81 82
################################ MIT Certificates SSL Auth #################################
MITX_FEATURES['AUTH_USE_MIT_CERTIFICATES'] = True

83
################################ DEBUG TOOLBAR #################################
84
INSTALLED_APPS += ('debug_toolbar',)
85
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
86
INTERNAL_IPS = ('127.0.0.1',)
87 88 89 90

DEBUG_TOOLBAR_PANELS = (
   'debug_toolbar.panels.version.VersionDebugPanel',
   'debug_toolbar.panels.timer.TimerDebugPanel',
91
   'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
92 93 94 95 96
   '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',
97 98

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

105
############################ FILE UPLOADS (ASKBOT) #############################
106 107
DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
MEDIA_ROOT = ENV_ROOT / "uploads"
108 109
MEDIA_URL = "/static/uploads/"
STATICFILES_DIRS.append(("uploads", MEDIA_ROOT))
110 111 112 113
FILE_UPLOAD_TEMP_DIR = ENV_ROOT / "uploads"
FILE_UPLOAD_HANDLERS = (
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
114
)
115 116 117

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

118
PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)