mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-09 17:06:15 +00:00
27 lines
592 B
Markdown
27 lines
592 B
Markdown
# Configuration
|
|
|
|
## What it does
|
|
Controls how the bot behaves through `src/config.jsonc`.
|
|
|
|
## How to use
|
|
- Open `src/config.jsonc` and edit only the fields you need.
|
|
- Keep `humanization.enabled` true to mimic real usage.
|
|
- Adjust `workers` to enable or disable search, quizzes, and promotions.
|
|
- Set `scheduling.enabled` to automate runs.
|
|
|
|
## Example
|
|
```jsonc
|
|
{
|
|
"humanization": { "enabled": true },
|
|
"workers": {
|
|
"doDesktopSearch": true,
|
|
"doMobileSearch": true,
|
|
"doDailySet": true
|
|
},
|
|
"scheduling": { "enabled": false }
|
|
}
|
|
```
|
|
|
|
---
|
|
**[← Back to Documentation](index.md)**
|