[Django]-What do I need to run Sentry inside my django site

0👍

One thing to make sure of is that you have added sentry and raven to your INSTALLED_APPS in settings.py (after doing pip install sentry).

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'sentry',
    'raven.contrib.django',
)

Also, make sure you add sentry to your urls.py with:

url(r'^sentry/',include('sentry.web.urls')),

Leave a comment