django-error-views

Verbose error views with minimal context and integration with Sentry


Keywords
django-error-views, django, error-handling, sentry
License
MIT
Install
pip install django-error-views==0.5.1

Documentation

Django Error Views

Verbose error views with minimal context and integration with Sentry

Documentation Status Coveralls.io coverage CodeCov coverage Maintainability License Tweet about this project

Features

  • Pending :D

Demo

To run an example project for this django reusable app, click the button below and start a demo serwer on Heroku

Deploy Django Opt-out example project to Heroku

Quickstart

Install Django Error Views:

pip install django-error-views

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_error_views.apps.DjangoErrorViewsConfig',
    ...
)

Add Django Error Views's URL patterns:

import django_error_views.urls


urlpatterns = [
    ...
    url(r'^', include(django_error_views.urls)),
    ...
]

Running Tests

Does the code actually work?

$ pipenv install --dev
$ pipenv shell
$ tox

We recommend using pipenv but a legacy approach to creating virtualenv and installing requirements should also work. Please install requirements/development.txt to setup virtual env for testing and development.

Credits

This package was created with Cookiecutter and the wooyek/cookiecutter-django-app project template.