Jeff Pollard f820713d76 Fix footer link to point to real page 12 years ago
..
templates f820713d76 Fix footer link to point to real page 12 years ago
README.rst 334080fdb5 Make the example app more functional and demonstrate various ways of 13 years ago
__init__.py f4a52c5623 added an example app 13 years ago
manage.py f4a52c5623 added an example app 13 years ago
settings.py 43fc6301c4 Correct default server settings to remove deprecated values 12 years ago
urls.py 334080fdb5 Make the example app more functional and demonstrate various ways of 13 years ago
views.py 334080fdb5 Make the example app more functional and demonstrate various ways of 13 years ago

README.rst

This is a sample Django app that illustrates various ways of sending data to Sentry.

To run this app you will need raven client installed::

pip install raven

Edit :file:`settings.py` and change `SENTRY_DSN` so that it matches your Sentry server.

Then do::

python manage.py syncdb
python manage.py runserver

And visit these URLS:

- http://localhost:8000/captureMessage/
- http://localhost:8000/captureException/
- http://localhost:8000/loggingError/
- http://localhost:8000/page_no_exist/

For more information, see the `Configuring Django section of the Raven
documentation `_.