-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
51 lines (41 loc) · 1.27 KB
/
Copy pathexample.env
File metadata and controls
51 lines (41 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Discord Webhook Configuration
# Required: at least one webhook URL
# Multiple webhooks: separate with commas
DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN"
# Delay between messages (in milliseconds)
# Default: 800
DELAY_BETWEEN_MESSAGES_MS=800
# ANN RSS Feed Configuration
# Multiple feeds: separate with commas
# Default: https://www.animenewsnetwork.com/all/rss.xml
ANN_RSS_URLS="https://www.animenewsnetwork.com/all/rss.xml"
# AniList Integration
# Enable/Disable AniList episode tracking
# Default: true
ANILIST_ENABLED=true
# Scheduling Configuration
# Check interval in minutes
# Default: 15
CHECK_INTERVAL_MINUTES=15
# Demo mode item limit (how many items to send on first run)
# Default: 3
DEMO_MODE_ITEM_LIMIT=3
# Health API Configuration
# Enable/Disable the health check API
# Default: true
API_ENABLED=true
# Health API Host
# Default: 127.0.0.1
API_HOST=127.0.0.1
# Health API Port
# Default: 3000
API_PORT=3000
# Logging Level
# Options: trace, debug, info, warn, error
# Default: info
RUST_LOG=info
# Messages Configuration File
# Path to the YAML file with message templates
# Can be relative (will look in config/ folder) or absolute
# Default: messages.yaml (resolves to config/messages.yaml)
MESSAGES_CONFIG_FILE=messages.yaml