Metadata-Version: 2.0
Name: django-celerybeat-status
Version: 0.0.2
Summary: Model based multi tenancy for Django.
Home-page: UNKNOWN
Author: Vinta Software
Author-email: contact@vinta.com.br
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Programming Language :: Python :: 3.5

Django Celery Beat Status
=========================

A library that integrates with django admin and shows in a simple GUI
when your periodic are going to run next.

Instalation
-----------

.. code:: bash

    pip install django-celerybeat-status

Configuration
-------------

1. Add ``'celerybeat_status'`` to your ``INSTALLED_APPS`` variable in
   django settings

.. code:: python

    INSTALLED_APPS = [
      ...
      'celerybeat_status',
    ]

2. Create a url for the status check view

.. code:: python

    from django.conf.urls import url, include

    urlpatterns = [
      # other urls...
      url(r'^admin/statuscheck/', include('celerybeat_status.urls')),
    ]

Usage
-----

Check your tasks under ``/admin/statuscheck/periodictasks/`` (if you
configured your urls the way we suggested in this docs).

You can also find a link in ``/admin`` sidebar.

Commercial Support
------------------

This project, as other Vinta open-source projects, is used in products
of Vinta clients. We are always looking for exciting work, so if you
need any commercial support, feel free to get in touch:
contact@vinta.com.br

Copyright (c) 2017 Vinta Serviços e Soluções Tecnológicas Ltda


