Ashraf Emad
Ashraf Emad
Worked for me with Django 2.2.4 i was working locally with SQLite db so crontab couldn't find the database file, that's why it wasn't working for me but when moved...
@eluizbr CRONJOBS = [ ('0 2 * * *', 'django.core.management.call_command', ['update_user_status']) ] CRONTAB_DJANGO_SETTINGS_MODULE = 'my_project.settings.staging'
> > @eluizbr > > CRONJOBS = [ > > ('0 2 * * *', 'django.core.management.call_command', ['update_user_status']) > > ] > > CRONTAB_DJANGO_SETTINGS_MODULE = 'my_project.settings.staging' > > Does it still...