From 18fb637f1b950866d3beaa7a71f800839b035fd0 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Thu, 22 Mar 2012 11:36:40 -0400 Subject: [PATCH] remove redundancy between dev and devplus envs in config --- settings2/devplus.py | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/settings2/devplus.py b/settings2/devplus.py index 9cc9a67779..16ca03c16f 100644 --- a/settings2/devplus.py +++ b/settings2/devplus.py @@ -1,11 +1,10 @@ """ This config file tries to mimic the production environment more closely than the normal dev.py. It assumes you're running a local instance of MySQL 5.1 and that -you're running memcached. +you're running memcached. You'll want to use this to test caching and database +migrations. """ -from common import * - -CSRF_COOKIE_DOMAIN = 'localhost' +from dev import * DATABASES = { 'default': { @@ -18,9 +17,6 @@ DATABASES = { } } -# Make this unique, and don't share it with anybody. -SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd' - CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', @@ -28,8 +24,4 @@ CACHES = { } } - SESSION_ENGINE = 'django.contrib.sessions.backends.cache' - -DEBUG = True -TEMPLATE_DEBUG = True \ No newline at end of file