allow local_settings to over-ride settings
This commit is contained in:
parent
3d5434799f
commit
529c81bf06
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
*.pyc
|
||||
local_settings.py
|
||||
|
|
|
@ -120,3 +120,8 @@ USE_TZ = True
|
|||
# https://docs.djangoproject.com/en/1.11/howto/static-files/
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
|
||||
try:
|
||||
from local_settings import *
|
||||
except:
|
||||
pass
|
Loading…
Reference in New Issue
Block a user