File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,10 @@ Certain scripts require a crontab set up in ordering to run them periodically.
1515```
1616// Sync Discord membership info every 5 minutes
1717*/5 * * * * python manage.py sync_discord
18- // Post war teams to Discord via webhook 30 minutes before war (NA time)
19- 30 0 * * * python manage.py post-war-teams
18+ // Post war teams to Discord via webhook. Supported intervals are 60, 30, and 15 mins before war.
19+ 0 * * * * python manage.py post-war-teams 60 // 60 minutes before
20+ 30 * * * * python manage.py post-war-teams 30 // 30 minutes before
21+ 45 * * * * python manage.py post-war-teams 30 // 15 minutes before
2022// Optionally add the following to periodically recalculate the aggregated stats in case they get out of sync
21230 6 * * * python manage.py recalculate-aggregates
2224```
You can’t perform that action at this time.
0 commit comments