2017-09-13 17:16:14 +02:00
|
|
|
# https://docs.weblate.org/en/latest/admin/install.html#production-cron
|
|
|
|
# Fulltext index updates
|
2017-09-14 14:11:48 +02:00
|
|
|
10 * * * * www-data cd "__FINALPATH__" && source __FINALPATH__/venv/bin/activate && python3 ./manage.py update_index
|
2017-09-13 17:16:14 +02:00
|
|
|
|
|
|
|
# Cleanup stale objects
|
2017-09-14 14:11:48 +02:00
|
|
|
@daily cd "__FINALPATH__" && source __FINALPATH__/venv/bin/activate && ./manage.py cleanuptrans
|
2017-09-13 17:16:14 +02:00
|
|
|
|
|
|
|
# Commit pending changes after 96 hours
|
2017-09-14 14:11:48 +02:00
|
|
|
@hourly cd "__FINALPATH__" && source __FINALPATH__/venv/bin/activate && ./manage.py commit_pending --all --age=96 --verbosity=0
|