Skip to content

Commit 9d770be

Browse files
Update README.md
1 parent fcbdbe2 commit 9d770be

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2123
0 6 * * * python manage.py recalculate-aggregates
2224
```

0 commit comments

Comments
 (0)