django-crontab

Why is my django-crontab cronjob not executing?

Why is my django-crontab cronjob not executing? Question: I have a django-project with an app called app that has a file called cron.py with a function called main_routine(). I want the main_routine() function to be called every minute. In my django-project/django-project/settings.py I have this: INSTALLED_APPS = [ ‘django_crontab’, … ] … CRONJOBS = [ (‘*/1 …

Total answers: 3