diff options
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'), + ] |