diff --git a/README.rst b/README.rst index c9bb843..6f8d4ab 100644 --- a/README.rst +++ b/README.rst @@ -74,6 +74,9 @@ To use this with your project you need to follow these steps: $ python manage.py migrate django_celery_monitor +#. Go to the Django admin of your site and look for the "Celery Monitor" + section. + Starting the monitoring process =============================== diff --git a/django_celery_monitor/camera.py b/django_celery_monitor/camera.py index da56ed6..48dc7dd 100644 --- a/django_celery_monitor/camera.py +++ b/django_celery_monitor/camera.py @@ -25,6 +25,7 @@ debug = logger.debug class Camera(Polaroid): """The Celery events Polaroid snapshot camera.""" + clear_after = True worker_update_freq = WORKER_UPDATE_FREQ diff --git a/setup.cfg b/setup.cfg index 7260456..d07cdd7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,3 +14,7 @@ match-dir = [^migrations] [wheel] universal = 1 + +[check-manifest] +ignore = + docs/_build*