marcosricardoss / django-crontab-manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crontab Manager

Crontab Manager is a Django app that aims to help manage cronjobs running by django-crontab.

Detailed documentation is in the "docs" directory.

setup

Install via pip:

pip install django-crontab-manager

Add "django_crontab_manager" and the "django_crontab" to your INSTALLED_APPS setting like this:

pip install django-crontab

INSTALLED_APPS = [
    ...
    'django_crontab',
    'django_crontab_manager'
]

Include the polls URLconf in your project urls.py like this:

path('crontab_manager/', include('django_crontab_manager.urls')), 

Access the management dashboard at the URL http://<your-url-project>/crontab_manager/.

license

MIT-License, see LICENSE file.

About

License:Other


Languages

Language:Python 81.5%Language:HTML 18.5%