https://github.com/bradbeattie/django-smokealarm
django-smokealarm is a package designed to collect front-end JavaScript errors and expose them in the admin backend for later inspection
https://github.com/bradbeattie/django-smokealarm
Last synced: 6 months ago
JSON representation
django-smokealarm is a package designed to collect front-end JavaScript errors and expose them in the admin backend for later inspection
- Host: GitHub
- URL: https://github.com/bradbeattie/django-smokealarm
- Owner: bradbeattie
- Created: 2012-05-09T20:45:18.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-24T18:58:30.000Z (over 10 years ago)
- Last Synced: 2025-05-07T14:58:48.577Z (6 months ago)
- Language: Python
- Homepage:
- Size: 121 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Introduction
============
``django-smokealarm`` is a package designed to collect front-end JavaScript
errors and expose them in the admin backend for later inspection.
Requirements
============
Django 1.4 (it may work with older versions, but I haven't tested this)
Installation
============
Add ``smokealarm`` to your ``INSTALLED_APPS``.
Add smokealarm to your URLConf, using something like this::
urlpatterns += patterns("",
url(r"^smokealarm/", include("smokealarm.urls")),
)
Add smokealarm to your base template, using something like this::
smokealarm_url = "{% url smokealarm_report %}";
Usage
=====
As JavaScript errors occur in the front end, browsers will make posts to
the smokealarm_report URL. The subsequently created models are available
in your backend admin.