aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-05-27 23:20:38 -0400
committerMike Crute <mcrute@gmail.com>2010-05-27 23:20:38 -0400
commit452fb756a9e955e34d864a327d0cab6b5dfdbcd5 (patch)
tree4dab409b6a2983b432e4c51d71327cc0d00c8020
parentc866a90a3fc0a0ad9eb595f00b91beb6cd0d0220 (diff)
downloadchishop-452fb756a9e955e34d864a327d0cab6b5dfdbcd5.tar.bz2
chishop-452fb756a9e955e34d864a327d0cab6b5dfdbcd5.tar.xz
chishop-452fb756a9e955e34d864a327d0cab6b5dfdbcd5.zip
Removing un-needed local settingsHEADmaster
-rw-r--r--chishop/settings.py18
1 files changed, 3 insertions, 15 deletions
diff --git a/chishop/settings.py b/chishop/settings.py
index 90ee842..9c5eca8 100644
--- a/chishop/settings.py
+++ b/chishop/settings.py
@@ -1,23 +1,11 @@
1import os
2from djangopypi.settings import * 1from djangopypi.settings import *
3 2
4DEBUG = True 3DEBUG = TEMPLATE_DEBUG = True
5TEMPLATE_DEBUG = DEBUG
6LOCAL_DEVELOPMENT = True 4LOCAL_DEVELOPMENT = True
7 5
8if LOCAL_DEVELOPMENT: 6ADMINS = MANAGERS = (
9 import sys
10 sys.path.append(os.path.dirname(__file__))
11
12ADMINS = (
13 ('chishop', 'example@example.org'), 7 ('chishop', 'example@example.org'),
14) 8)
15 9
16MANAGERS = ADMINS
17
18DATABASE_ENGINE = 'sqlite3' 10DATABASE_ENGINE = 'sqlite3'
19DATABASE_NAME = os.path.join(here, 'devdatabase.db') 11DATABASE_NAME = 'devdatabase.db'
20DATABASE_USER = ''
21DATABASE_PASSWORD = ''
22DATABASE_HOST = ''
23DATABASE_PORT = ''