"""This is the standard development settings file. If you need to overload settings, please do so in a local_settings.py file (it won't be tracked in git). """ import os from lib.settings_base import * # noqa DEBUG = True TEMPLATE_DEBUG = DEBUG DEBUG_PROPAGATE_EXCEPTIONS = False # These apps are great during development. INSTALLED_APPS += ( 'django_extensions', 'landfill', ) # Using locmem deadlocks in certain scenarios. This should all be fixed, # hopefully, in Django1.7. At that point, we may try again, and remove this to # not require memcache installation for newcomers. # A failing scenario is: # 1/ log in # 2/ click on "Submit a new addon" # 3/ click on "I accept this Agreement" => request never ends # # If this is changed back to locmem, make sure to use it from "caching" (by # default in Django for locmem, a timeout of "0" means "don't cache it", while # on other backends it means "cache forever"): # 'BACKEND': 'caching.backends.locmem.LocMemCache' CACHES = { 'default': { 'BACKEND': 'caching.backends.memcached.MemcachedCache', 'LOCATION': os.environ.get('MEMCACHE_LOCATION', 'localhost:11211'), } } HAS_SYSLOG = False # syslog is used if HAS_SYSLOG and NOT DEBUG. # If you're not running on SSL you'll want this to be False. SESSION_COOKIE_SECURE = False SESSION_COOKIE_DOMAIN = None # Disables custom routing in settings.py so that tasks actually run. CELERY_ALWAYS_EAGER = True CELERY_ROUTES = {} # If you want to allow self-reviews for add-ons/apps, then enable this. # In production we do not want to allow this. ALLOW_SELF_REVIEWS = True # Assuming you did `npm install` (and not `-g`) like you were supposed to, this # will be the path to the `stylus` and `lessc` executables. STYLUS_BIN = os.getenv('STYLUS_BIN', path('node_modules/stylus/bin/stylus')) LESS_BIN = os.getenv('LESS_BIN', path('node_modules/less/bin/lessc')) CLEANCSS_BIN = os.getenv('CLEANCSS_BIN', path('node_modules/clean-css/bin/cleancss')) UGLIFY_BIN = os.getenv('UGLIFY_BIN', path('node_modules/uglify-js/bin/uglifyjs')) # Locally we typically don't run more than 1 elasticsearch node. So we set # replicas to zero. ES_DEFAULT_NUM_REPLICAS = 0 SITE_URL = 'http://localhost:8000' SERVICES_DOMAIN = 'localhost:8000' SERVICES_URL = 'http://%s' % SERVICES_DOMAIN # Turn off validation by default on development instances, until we have an # easy way to install a working copy of Spidermonkey. Real Soon Now(R). # No, really, though, soon. VALIDATE_ADDONS = False ADDON_COLLECTOR_ID = 1 # Default AMO user id to use for tasks (from users.json fixture in zadmin). TASK_USER_ID = 10968 # Set to True if we're allowed to use X-SENDFILE. XSENDFILE = False # Enable the Django Debug Toolbar for local dev. INSTALLED_APPS += ( 'debug_toolbar', ) DEBUG_TOOLBAR_PATCH_SETTINGS = False # Prevent DDT from patching the settings. MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',) def show_toolbar_callback(request): """Callback used by the Django Debug Toolbar to decide when to display.""" # We want to make sure to have the DEBUG value at runtime, not the one we # have in this specific settings file. from django.conf import settings return settings.DEBUG DEBUG_TOOLBAR_CONFIG = { "SHOW_TOOLBAR_CALLBACK": "settings.show_toolbar_callback", } # If you have settings you want to overload, put them in a local_settings.py. try: from local_settings import * # noqa except ImportError: pass