diff options
author | Étienne Loks <etienne@peacefrogs.net> | 2019-08-26 13:19:42 +0200 |
---|---|---|
committer | Étienne Loks <etienne@peacefrogs.net> | 2019-08-26 13:19:42 +0200 |
commit | 55e0894e41c06d33072e5d161ca5135ded5cdc6b (patch) | |
tree | 8337a1550238691fe2be6a797069bab9ea0fcb72 /pergamon/settings/production.py | |
parent | 87b2f787b3305984c60c658bd0754cb65107a596 (diff) | |
download | ishtar-pergamon-55e0894e41c06d33072e5d161ca5135ded5cdc6b.tar.bz2 ishtar-pergamon-55e0894e41c06d33072e5d161ca5135ded5cdc6b.zip |
ishtar_public -> pergamon
Diffstat (limited to 'pergamon/settings/production.py')
-rw-r--r-- | pergamon/settings/production.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pergamon/settings/production.py b/pergamon/settings/production.py new file mode 100644 index 0000000..596ca5c --- /dev/null +++ b/pergamon/settings/production.py @@ -0,0 +1,13 @@ +from .base import * + +DEBUG = False + +try: + from .local import * +except ImportError: + pass + +if EXTRA_APP: + STATICFILES_DIRS += [ + os.path.join(BASE_DIR, EXTRA_APP, 'static'), + ] |