-#ADMINS and MANAGERS
-ADMINS = (('Forum Admin', 'forum@example.com'),)
-MANAGERS = ADMINS
-
-DEBUG = True
-DEBUG_TOOLBAR_CONFIG = {
- 'INTERCEPT_REDIRECTS': True
-}
-TEMPLATE_DEBUG = DEBUG
-INTERNAL_IPS = ('127.0.0.1',)
-
-if True:
-
- DATABASE_NAME = 'meta_rep' # Or path to database file if using sqlite3.
- DATABASE_USER = 'postgres' # Not used with sqlite3.
- DATABASE_PASSWORD = 'postgres' # Not used with sqlite3.
- DATABASE_ENGINE = 'postgresql_psycopg2' #mysql, etc
- DATABASE_HOST = 'localhost'
- DATABASE_PORT = ''
-else:
- DATABASE_NAME = 'd:/stuff/sxtest.db'#'sxtest2rep' # Or path to database file if using sqlite3.
- DATABASE_USER = '' # Not used with sqlite3.
- DATABASE_PASSWORD = '' # Not used with sqlite3.
- DATABASE_ENGINE = 'sqlite3' #mysql, etc
- DATABASE_HOST = ''
- DATABASE_PORT = ''
-
-#CACHE_BACKEND = 'file://%s' % os.path.join(os.path.dirname(__file__),'cache').replace('\\','/')
-#CACHE_BACKEND = 'dummy://'
-CACHE_BACKEND = 'memcached://127.0.0.1:11211/'
-SESSION_ENGINE = 'django.contrib.sessions.backends.db'