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

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 `_.