README.rst 656 B

12345678910111213141516171819202122
  1. This is a sample Django app that illustrates various ways of sending data to Sentry.
  2. To run this app you will need raven client installed::
  3. pip install raven
  4. Edit :file:`settings.py` and change `SENTRY_DSN` so that it matches your Sentry server.
  5. Then do::
  6. python manage.py syncdb
  7. python manage.py runserver
  8. And visit these URLS:
  9. - http://localhost:8000/captureMessage/
  10. - http://localhost:8000/captureException/
  11. - http://localhost:8000/loggingError/
  12. - http://localhost:8000/page_no_exist/
  13. For more information, see the `Configuring Django section of the Raven
  14. documentation <http://raven.readthedocs.org/en/latest/config/django.html>`_.