Hi Rafalp,
I'm going to deploy the app on Heroku, where Cron is not available. I have two options, Heroku Scheduler (easy) or something like APScheduler (more complex).
If i'm going the Heroku Scheduler route, there is a limitation in the time intervals.
These exact intervals isn't available.
15 0 * * python manage.py prunecategories
25 0 * * python manage.py buildactivepostersranking
25 0 * * python manage.py clearattachments
25 0 * * python manage.py clearreadtracker
25 0 * * python manage.py clearsessions
25 0 * * python manage.py invalidatebans
0 1 * * * python manage.py deletemarkedusers
It would have to be something like this:
00:00 python manage.py prunecategories
00:30 * * python manage.py buildactivepostersranking
00:30 * * python manage.py clearattachments
00:30 * * python manage.py clearreadtracker
00:30 * * python manage.py clearsessions
00:30 * * python manage.py invalidatebans
01:00 * * python manage.py deletemarkedusers
Is this going to be a problem?
Best regards
Mike