Move local settings to "conf" module

This commit is contained in:
2011-03-11 12:44:25 +00:00
parent 4bb9a43203
commit 58b1691638
4 changed files with 3 additions and 3 deletions

0
conf/__init__.py Normal file
View File

View File

@@ -0,0 +1,6 @@
BROKER_HOST = "localhost"
BROKER_PORT = 5672
BROKER_USER = "%(user)s"
BROKER_PASSWORD = "%(password)s"
BROKER_VHOST = "%(vhost)s"

View File

@@ -0,0 +1,8 @@
DATABASES = {
'default': {
'NAME': 'dreddit_sso.db',
'ENGINE': 'django.db.backends.sqlite3',
'USER': '',
'PASSWORD': '',
}
}