Feature: Support local_settings as optional settings

This commit is contained in:
winkidney
2018-08-19 04:33:14 -07:00
parent 8df82fb7c3
commit 2278d6a552
2 changed files with 10 additions and 0 deletions

View File

@@ -19,3 +19,8 @@ DATABASES = {
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
try:
from .local_settings import *
except ImportError:
pass