You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,36 +54,37 @@ rust-commit-tracker
54
54
55
55
## Configuration
56
56
57
-
On first run, the application creates `config.toml`. **Only the Discord webhook URL is required** - all other settings have sensible defaults.
57
+
On first run, the application creates `config.toml` with sensible defaults. **Only the Discord webhook URL needs to be set** - everything else works out of the box.
58
58
59
-
### Required Configuration
59
+
### Required: Discord Webhook
60
60
61
61
Edit `config.toml` and set your Discord webhook URL:
62
62
63
63
```toml
64
64
[discord]
65
-
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"# ← Only required field
65
+
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"# ← Required: Replace with actual webhook
66
66
```
67
67
68
-
### Full Configuration Reference
68
+
### Optional: Customize Defaults
69
+
70
+
All other settings have working defaults but can be customized:
69
71
70
72
```toml
71
73
[discord]
72
-
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"# Required: Your Discord webhook
73
-
bot_name = "Rust Commit Tracker"# Optional: Bot display name
0 commit comments