Adding raven for Sentry.

master
Nick Sergeant 2013-03-25 20:43:21 -04:00
parent 3c36e43b0b
commit be187fa44a
2 changed files with 9 additions and 1 deletions

View File

@ -45,6 +45,9 @@ POSTMARK_API_KEY = ''
VIRTUALENV_PATH = ''
AMAZON_API_KEY = ''
AMAZON_API_SECRET = ''
STRIPE_API_KEY = ''
ENV_HOST = 'user@domain.com:22'
@ -53,6 +56,7 @@ USE_HTTPS = False
SESSION_COOKIE_SECURE = False
CSRF_COOKIE_SECURE = False
SESSION_COOKIE_DOMAIN = '.snipt.net'
ALLOWED_HOSTS = ['*']
HAYSTACK_CONNECTIONS = {
'default': {
@ -65,6 +69,9 @@ HAYSTACK_CONNECTIONS = {
INSTALLED_APPS += (
'debug_toolbar',
'django_extensions',
'raven.contrib.django.raven_compat',
)
ALLOWED_HOSTS = ['*']
RAVEN_CONFIG = {
'dsn': '',
}

View File

@ -17,6 +17,7 @@ pyelasticsearch==0.3
python-memcached
python-postmark
pyyaml
raven
requests
simplejson
South