InstallationΒΆ
- Install
django-livewatch(or download from PyPI):
pip install django-livewatch
- If you use
livewatchwithceleryadd it toINSTALLED_APPSinsettings.py:
INSTALLED_APPS = (
# other apps
'livewatch',
)
- Include
livewatch.urlsin yoururls.py:
urlpatterns += patterns('',
(r'^livewatch/', include('livewatch.urls')),
)