|
|
|
|
@ -66,8 +66,6 @@ INSTALLED_APPS = [ |
|
|
|
|
'apps.content', |
|
|
|
|
'apps.school', |
|
|
|
|
] |
|
|
|
|
if DEBUG: |
|
|
|
|
INSTALLED_APPS += ['silk'] |
|
|
|
|
|
|
|
|
|
MIDDLEWARE = [ |
|
|
|
|
'corsheaders.middleware.CorsMiddleware', |
|
|
|
|
@ -266,12 +264,6 @@ CONSTANCE_CONFIG_FIELDSETS = OrderedDict({ |
|
|
|
|
), |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try: |
|
|
|
|
from .local_settings import * |
|
|
|
|
except ImportError: |
|
|
|
|
pass |
|
|
|
|
|
|
|
|
|
try: |
|
|
|
|
from paymentwall import * |
|
|
|
|
except ImportError: |
|
|
|
|
@ -302,3 +294,8 @@ RAVEN_CONFIG = { |
|
|
|
|
# release based on the git info. |
|
|
|
|
'release': raven.fetch_git_sha(BASE_DIR), |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try: |
|
|
|
|
from .local_settings import * |
|
|
|
|
except ImportError: |
|
|
|
|
pass |
|
|
|
|
|