django-livewatch

django-livewatch integrates livewatch.de for django projects


Keywords
livewatch, django
License
BSD-3-Clause
Install
pip install django-livewatch==0.3.0

Documentation

django-livewatch

https://badge.fury.io/py/django-livewatch.png https://coveralls.io/repos/moccu/django-livewatch/badge.svg?branch=master https://readthedocs.org/projects/django-livewatch/badge/?version=latest

livewatch.de integration for django projects.

Installation

pip install django-livewatch
  • If you use livewatch with celery add it to INSTALLED_APPS in settings.py:
INSTALLED_APPS = (
    # other apps
    'livewatch',
)
  • Include livewatch.urls in your urls.py:
urlpatterns += patterns('',
    (r'^livewatch/', include('livewatch.urls')),
)

Usage

Before you can use django-livewatch, you have to install and configure it.

To integrate django-livewatch with livewatch.de you can use the following URLs:

  • /livewatch/

... if you're using the cache extension:

  • /livewatch/cache/

... if you're using the celery extension:

  • /livewatch/celery/

... if you're using the rq extension:

  • /livewatch/rq/

Resources