Skip to content

Commit

Permalink
Update schedules.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrotski committed Jan 25, 2024
1 parent 2b98e5d commit cc92d29
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/content/docs/getting-started/schedules.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,16 @@ If you have multiple tasks you want to run, for example you want to run a save c

Here is a video we've made for schedules. While the Game Panel looks slightly different, the functionality is the same.

<iframe src="//www.youtube.com/embed/MyIA9kse-Ec" allowfullscreen="allowfullscreen"></iframe>
<iframe src="//www.youtube.com/embed/MyIA9kse-Ec" allowfullscreen="allowfullscreen"></iframe>

## Popular Times

Here is a list of popular times in cron format.

| Schedule | Crontab Entry |
|------------------|-----------------------|
| Every 1 hour | `0 * * * *` |
| Every 2 hours | `0 */2 * * *` |
| Every 4 hours | `0 */4 * * *` |
| Every day | `0 0 * * *` |
| Every week | `0 0 * * 0` |

0 comments on commit cc92d29

Please sign in to comment.