-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (44 loc) · 1.48 KB
/
.env.example
File metadata and controls
56 lines (44 loc) · 1.48 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
52
53
54
55
56
# =============================================================================
# Sentinel — Media Download Guardian
# All configuration is via environment variables. No hardcoded values.
# =============================================================================
# --- Core ---
SENTINEL_PORT=9200
SENTINEL_DB_PATH=/data/sentinel.db
SENTINEL_LOG_LEVEL=INFO # DEBUG, INFO, WARN, ERROR
# --- Jellyfin (movie/TV verification) ---
JELLYFIN_URL=
JELLYFIN_API_KEY=
# --- Jellyseerr (movie/TV request source) ---
JELLYSEERR_URL=
JELLYSEERR_API_KEY=
# --- Sonarr (TV verification) ---
SONARR_URL=
SONARR_API_KEY=
# --- Radarr (movie verification) ---
RADARR_URL=
RADARR_API_KEY=
# --- qBittorrent (download monitoring) ---
QBITTORRENT_URL=
QBITTORRENT_USER=admin
QBITTORRENT_PASS=
# --- Prowlarr (indexer search source) ---
PROWLARR_URL=
PROWLARR_API_KEY=
# --- Audiobookshelf (audiobook verification) ---
AUDIOBOOKSHELF_URL=
AUDIOBOOKSHELF_API_KEY=
# --- Kavita (comic/ebook verification) ---
KAVITA_URL=
KAVITA_USER=admin
KAVITA_PASS=
# --- Calibre-Web OPDS (optional) ---
CALIBRE_OPDS_URL=
# --- Notifications ---
DISCORD_WEBHOOK_URL=
NOTIFICATION_WEBHOOK_URL=
# --- Guardian Behavior ---
VERIFY_INTERVAL_SECONDS=60 # How often to check active jobs (seconds)
VERIFY_MAX_CHECKS=30 # Max verification attempts before trying next source
MAX_SOURCES_PER_TYPE=5 # Max sources to try per media type
TITLE_MATCH_THRESHOLD=0.7 # Jaccard word overlap threshold (0.0-1.0)