-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy path.env.example
More file actions
44 lines (38 loc) · 2.1 KB
/
Copy path.env.example
File metadata and controls
44 lines (38 loc) · 2.1 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
MONITORSS_VERSION=7
BOT_PRESENCE_DISCORD_BOT_TOKEN="BOT_TOKEN_HERE"
BOT_PRESENCE_DISCORD_BOT_CLIENT_ID="BOT_CLIENT_ID_HERE"
# Optional: Bot presence status. Values: online, idle, dnd, invisible, offline
BOT_PRESENCE_STATUS="online"
# Optional: Activity type shown in bot status. Values: playing, streaming, listening, watching, custom_status, competing
# Both ACTIVITY_TYPE and ACTIVITY_NAME must be set for activity to display
BOT_PRESENCE_ACTIVITY_TYPE=""
# Optional: Activity name/text shown in bot status (e.g., "with RSS feeds")
# Both ACTIVITY_TYPE and ACTIVITY_NAME must be set for activity to display
BOT_PRESENCE_ACTIVITY_NAME=""
# Optional: Stream URL for "streaming" activity type (must be a Twitch or YouTube URL)
BOT_PRESENCE_ACTIVITY_STREAM_URL=""
BACKEND_API_MONGODB_URI=mongodb://mongo:27017/rss
BACKEND_API_DEFAULT_REFRESH_RATE_MINUTES=10
BACKEND_API_DEFAULT_MAX_USER_FEEDS=10000
BACKEND_API_MAX_DAILY_ARTICLES_DEFAULT=100000
BACKEND_API_DISCORD_BOT_TOKEN="BOT_TOKEN_HERE"
BACKEND_API_DISCORD_CLIENT_ID="BOT_CLIENT_ID_HERE"
BACKEND_API_DISCORD_CLIENT_SECRET="BOT_CLIENT_SECRET_HERE"
BACKEND_API_SESSION_SECRET="xQ8XtBTLbc7iGtMG9nWZxdfLp8iUjFtX7F5tmQAy3QH26ixh8VcpqDR4G3bdFibe"
BACKEND_API_SESSION_SALT="aq9iDxBVDdsrDR6m"
BACKEND_API_LOGIN_REDIRECT_URI=http://localhost:8000
BACKEND_API_DISCORD_REDIRECT_URI=http://localhost:8000/api/v1/discord/callback-v2
BACKEND_API_ALLOW_LEGACY_REVERSION=true
USER_FEEDS_DISCORD_CLIENT_ID="BOT_CLIENT_ID_HERE"
USER_FEEDS_DISCORD_API_TOKEN="BOT_TOKEN_HERE"
USER_FEEDS_DELIVERY_RECORD_PERSISTENCE_MONTHS=1
USER_FEEDS_ARTICLE_PERSISTENCE_MONTHS=12
DISCORD_REST_LISTENER_MONGO_URI=mongodb://mongo:27017/rss?replicaSet=dbrs&directConnection=true
DISCORD_REST_LISTENER_BOT_TOKEN="BOT_TOKEN_HERE"
DISCORD_REST_LISTENER_BOT_CLIENT_ID="BOT_CLIENT_ID_HERE"
FEED_REQUESTS_FEEDS_MONGODB_URI=mongodb://mongo:27017/rss?replicaSet=dbrs&directConnection=true
FEED_REQUESTS_FEED_REQUEST_DEFAULT_USER_AGENT="MonitoRSS [Self-Hosted]/1.0"
FEED_REQUESTS_HISTORY_PERSISTENCE_MONTHS=1
# Disable feeds after 5*(2^11) minutes, or 6.25 days
FEED_REQUESTS_MAX_FAIL_ATTEMPTS=11
FEED_REQUESTS_REQUEST_TIMEOUT_MS=15000