diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-03-08 14:26:10 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:27 +0200 |
commit | ac02eeb7de1f734352c7013694d8f8346758c26a (patch) | |
tree | 87bba7046a267dd105c1bdb975a66bddfde2149d /install/local_settings.py.sample | |
parent | 10fb6fc7b37cd922be713df61625506db678faa6 (diff) | |
download | Ishtar-ac02eeb7de1f734352c7013694d8f8346758c26a.tar.bz2 Ishtar-ac02eeb7de1f734352c7013694d8f8346758c26a.zip |
Install script: fix uwsgi and extra settings conf
Diffstat (limited to 'install/local_settings.py.sample')
-rw-r--r-- | install/local_settings.py.sample | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/install/local_settings.py.sample b/install/local_settings.py.sample index 93ccdc01a..aecad17a6 100644 --- a/install/local_settings.py.sample +++ b/install/local_settings.py.sample @@ -35,3 +35,8 @@ DATABASES = { 'PASSWORD': '#DB_PASSWORD#', } } + +try: + from extra_settings import * +except ImportError as e: + print('Unable to load extra_settings.py:', e) |