mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-10 01:06:17 +00:00
23 lines
465 B
Markdown
23 lines
465 B
Markdown
# Scheduling
|
|
|
|
## What it does
|
|
Runs the bot automatically at set times.
|
|
|
|
## How to use
|
|
- Turn on scheduling in `src/config.jsonc` under `scheduling.enabled`.
|
|
- Choose a time using the cron or Task Scheduler fields already in the config.
|
|
- Leave the machine or container running so the schedule can trigger.
|
|
|
|
## Example
|
|
```jsonc
|
|
{
|
|
"scheduling": {
|
|
"enabled": true,
|
|
"cron": { "schedule": "0 9 * * *" }
|
|
}
|
|
}
|
|
```
|
|
|
|
---
|
|
**[← Back to Documentation](index.md)**
|