# -*- coding: utf-8 -*-
+from __future__ import absolute_import
import os.path
-PROJECT_ROOT = os.path.realpath(os.path.dirname(__file__))
+PROJECT_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
DEBUG = False
TEMPLATE_DEBUG = DEBUG
# CAS_SERVER_URL = "http://cas.fnp.pl/
CAS_LOGOUT_COMPLETELY = True
-from compress_settings import *
-
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
"AUTH_PASSWD": "platforma",
}
-# Import localsettings file, which may override settings defined here
+try:
+ from redakcja.settings.compress import *
+except ImportError:
+ pass