19 lines
450 B
Bash
19 lines
450 B
Bash
# Discord Bot Token
|
|
# Get this from https://discord.com/developers/applications
|
|
DISCORD_TOKEN=
|
|
|
|
# Discord Channel IDs to monitor (comma-separated)
|
|
DISCORD_CHANNEL_IDS=
|
|
|
|
# Channel name mapping (channel_id=name, comma-separated)
|
|
CHANNEL_NAMES=
|
|
|
|
# Server port (optional, defaults to 8000)
|
|
PORT=8000
|
|
|
|
# Base URL for RSS feed links (optional)
|
|
BASE_URL=localhost
|
|
|
|
# Fetch interval in milliseconds (optional, defaults to 5 minutes)
|
|
FETCH_INTERVAL_MS=300000
|