-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.env
More file actions
59 lines (45 loc) · 2.16 KB
/
sample.env
File metadata and controls
59 lines (45 loc) · 2.16 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
57
58
# Plex server connection details
PLEX_URL="http://your_plex_server_ip:32400"
PLEX_TOKEN="your_plex_token_here"
# Discord bot credentials and channel configuration
DISCORD_TOKEN="your_discord_bot_token_here"
SONARR_CHANNEL_ID="your_sonarr_discord_channel_id"
RADARR_CHANNEL_ID="your_radarr_discord_channel_id"
# Your personal Discord user ID for administrative alerts or direct messages
DEVINVEE_DISCORD_ID="your_discord_user_id"
# Docker host connection details for managing containers
DOCKER_SERVER_IP="your_docker_host_ip"
DOCKER_SERVER_USER="your_docker_host_username"
DOCKER_SERVER_PASSWORD="your_docker_host_password"
# The port your Docker host's SSH server is running on
SSH_PORT="22"
# A comma-separated list of Docker container names the bot should be aware of
CONTAINER_NAMES="plex,sonarr,radarr"
# The specific order in which to restart containers, comma-separated
RESTART_ORDER="plex,autoscan,sonarr,radarr,prowlarr"
# Real-Debrid API key for Real-Debrid related features
REALDEBRID_API_KEY="your_realdebrid_api_key"
# Overseerr integration for request management
OVERSEERR_BASE_URL="http://your_overseerr_ip:5055"
OVERSEERR_API_KEY="your_overseerr_api_key"
# Sonarr instance details
SONARR_URL="http://your_sonarr_ip:8989"
SONARR_API_KEY="your_sonarr_api_key"
# (Optional) Additional Sonarr instance for Anime
SONARR_ANIME_URL="http://your_sonarr_anime_ip:8989"
SONARR_ANIME_API_KEY="your_sonarr_anime_api_key"
# (Optional) Additional Sonarr instance for 4K content
SONARR_4K_URL="http://your_sonarr_4k_ip:8989"
SONARR_4K_API_KEY="your_sonarr_4k_api_key"
# Logging level for the application (e.g., debug, info, warning, error)
LOG_LEVEL="info"
# Discord role to assign to new users upon joining or verification
NEW_USER_ROLE_ID="your_new_user_discord_role_id"
# Invite link for new users, potentially from a service like Wizarr
INVITE_LINK="https://your_invite_host/path"
# Tailscale authentication key for network access
TS_AUTHKEY="tskey-your_tailscale_auth_key"
# The Movie Database (TMDB) API key for fetching media metadata
TMDB_API_KEY="your_tmdb_api_key"
# Full path to the script used for restarting the Docker stack
STACK_RESTART_SCRIPT="/path/to/your/restart_script.sh"