From 55e0894e41c06d33072e5d161ca5135ded5cdc6b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 26 Aug 2019 13:19:42 +0200 Subject: ishtar_public -> pergamon --- pergamon/settings/production.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pergamon/settings/production.py (limited to 'pergamon/settings/production.py') 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'), + ] -- cgit v1.2.3