mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 14:49:31 +00:00
Move local settings to "conf" module
This commit is contained in:
0
conf/__init__.py
Normal file
0
conf/__init__.py
Normal file
6
conf/brokersettings.py.example
Normal file
6
conf/brokersettings.py.example
Normal file
@@ -0,0 +1,6 @@
|
||||
BROKER_HOST = "localhost"
|
||||
BROKER_PORT = 5672
|
||||
BROKER_USER = "%(user)s"
|
||||
BROKER_PASSWORD = "%(password)s"
|
||||
BROKER_VHOST = "%(vhost)s"
|
||||
|
||||
8
conf/dbsettings.py.example
Normal file
8
conf/dbsettings.py.example
Normal file
@@ -0,0 +1,8 @@
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'NAME': 'dreddit_sso.db',
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'USER': '',
|
||||
'PASSWORD': '',
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user