Verbose error views with minimal context and integration with Sentry
- Free software: GNU Affero General Public License v3
- Documentation: https://django-error-views.readthedocs.io.
- Pending :D
To run an example project for this django reusable app, click the button below and start a demo serwer on Heroku
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)),
...
]
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.
This package was created with Cookiecutter and the wooyek/cookiecutter-django-app project template.