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')),
)