mirror of
https://github.com/nikdoof/test-auth.git
synced 2026-01-31 08:28:15 +00:00
Reorganise the file structure into a project tree
This commit is contained in:
0
app/conf/__init__.py
Normal file
0
app/conf/__init__.py
Normal file
6
app/conf/brokersettings.py.example
Normal file
6
app/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
app/conf/dbsettings.py.example
Normal file
8
app/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