1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/conf/cron

10 lines
551 B
Text
Raw Normal View History

# https://docs.weblate.org/en/latest/admin/install.html#production-cron
# Fulltext index updates
2018-06-13 23:49:24 +02:00
*/5 * * * * __APP__ export DJANGO_SETTINGS_MODULE="weblate.settings" && cd __FINALPATH__ && venv/bin/weblate update_index
# Cleanup stale objects
2018-06-13 23:49:24 +02:00
@daily __APP__ export DJANGO_SETTINGS_MODULE="weblate.settings" && cd __FINALPATH__ && venv/bin/weblate cleanuptrans
# Commit pending changes after 96 hours
2018-06-13 23:49:24 +02:00
@hourly __APP__ export DJANGO_SETTINGS_MODULE="weblate.settings" && cd __FINALPATH__ && venv/bin/weblate commit_pending --all --age=96 --verbosity=0