diff --git a/opentech/settings/production.py b/opentech/settings/production.py index 1fa8850e8335fb913e24829935189ce0db9e6a4e..410aff444a003c4c5869931637dabb8cf3635864 100644 --- a/opentech/settings/production.py +++ b/opentech/settings/production.py @@ -11,16 +11,11 @@ from .base import * # noqa # Disable debug mode DEBUG = False -# Raven (sentry) configuration. +# Raven (sentry) configuration. See local settings for DSN -# INSTALLED_APPS += ( -# 'raven.contrib.django.raven_compat', -# ) - -# RAVEN_CONFIG = { -# 'dsn': '<PUT DSN URL HERE>?verify_ssl=0', -# 'release': raven.fetch_git_sha(BASE_DIR), -# } +INSTALLED_APPS += ( + 'raven.contrib.django.raven_compat', +) # Cache everything for 10 minutes