forked from data.coop/membersystem
New settings layout
This commit is contained in:
parent
37973c352c
commit
1add5f3e35
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ __pycache__/
|
|||
*.pyc
|
||||
*.sw*
|
||||
db.sqlite3
|
||||
membersystem/settings/local.py
|
||||
|
|
10
membersystem/settings/__init__.py
Normal file
10
membersystem/settings/__init__.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
import warnings
|
||||
|
||||
from .base import *
|
||||
|
||||
try:
|
||||
from .local import *
|
||||
except ImportError:
|
||||
warnings.warn("No settings.local, using a default SECRET_KEY 'hest'")
|
||||
SECRET_KEY = "hest"
|
||||
pass
|
|
@ -19,9 +19,6 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|||
# Quick-start development settings - unsuitable for production
|
||||
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = '=z5+m4xt$)a#l-*d50vta1vnnho250h3up9o+$c@)ztf8ahw3q'
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = True
|
||||
|
Loading…
Reference in a new issue