livewatch.de integration for django projects.
- 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')),
)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/