-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (41 loc) · 1.88 KB
/
Copy path.env.example
File metadata and controls
49 lines (41 loc) · 1.88 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
# ==========================================================
# Plex Missing — Configuration
# ----------------------------------------------------------
# Copy this file to ".env" (exact name, no ".example") and
# fill in your details. Your ".env" file stays private and is
# never uploaded to GitHub.
# ==========================================================
# ----- APP LOGIN (REQUIRED) -------------------------------
# The web app is password-protected. Pick your own login here.
AUTH_USERNAME=admin
AUTH_PASSWORD=change_this_to_a_strong_password
# Optional: a fixed session secret so you stay logged in across
# restarts. If left blank, a random one is generated each start
# (you'll just have to sign in again after restarting the app).
SECRET_KEY=
# ----- PLEX (REQUIRED) ------------------------------------
# Your Plex server address (+ :32400) and token.
# How to find your token:
# https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/
PLEX_URL=http://192.168.1.10:32400
PLEX_TOKEN=your_plex_token_here
# ----- THETVDB (REQUIRED for TV missing-episode detection) -
# Free API key from https://thetvdb.com/dashboard/account/apikey
TVDB_API_KEY=your_tvdb_api_key_here
# ----- SONARR (OPTIONAL) ----------------------------------
# Enables the "Sonarr Get" buttons to auto-search missing episodes.
# Leave API key blank if you don't use Sonarr.
SONARR_URL=http://localhost:8989/api/v3
SONARR_API_KEY=
# ----- qBITTORRENT (OPTIONAL) -----------------------------
# Enables the "Send to qBit" button. Turn on the Web UI in
# qBittorrent > Options > Web UI first. Leave password blank to disable.
QBIT_URL=http://localhost:8080
QBIT_USER=admin
QBIT_PASS=
# ----- SERVER --------------------------------------------
# Port to open the app on, and host binding.
WEB_PORT=5090
HOST=0.0.0.0
# Set to "true" only while troubleshooting. Keep "false" normally.
FLASK_DEBUG=false