livewatch.de integration for django projects.
- Install
django-livewatch
(or download from PyPI):
pip install django-livewatch
- If you use
livewatch
withcelery
add it toINSTALLED_APPS
insettings.py
:
INSTALLED_APPS = (
# other apps
'livewatch',
)
- Include
livewatch.urls
in 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/