Refactored settings to support multiple sites and secrets
This commit is contained in:
15
mayan/settings/dev.py
Normal file
15
mayan/settings/dev.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from mayan.settings.includes.common import *
|
||||
|
||||
DEBUG = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
ALLOWED_HOSTS = []
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||
'NAME': 'mayan',
|
||||
'USER': 'mayan',
|
||||
'PASSWORD': DBPASSWORD,
|
||||
'HOST': '',
|
||||
'PORT': ''}}
|
||||
Reference in New Issue
Block a user