expephalon/core/management/commands/setupcron.py
Klaus-Uwe Mitterer 27fe413d11 Some refactoring to get cron running
Moved dbsettings documentation to Gitlab wiki
2020-05-24 17:44:27 +02:00

9 lines
No EOL
235 B
Python

from django.core.management.base import BaseCommand, CommandError
from core.helpers.cron import setup_cron
class Command(BaseCommand):
help = 'Enables the cron system'
def handle(self, *args, **options):
setup_cron()