Initial commit: Arr Summary source from server
This commit is contained in:
commit
c1e30bc8f0
37 changed files with 11661 additions and 0 deletions
56
.env.example
Normal file
56
.env.example
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# ══════════════════════════════════════════════════════════════════
|
||||
# Greendale Media Centre — Environment Variables
|
||||
# Copy this file to .env and fill in your values.
|
||||
# ══════════════════════════════════════════════════════════════════
|
||||
|
||||
# ── Login ─────────────────────────────────────────────────────────
|
||||
# Password for the dashboard login page
|
||||
LOGIN_PASSWORD=changeme
|
||||
|
||||
# Secret key for Flask session signing — generate a random string:
|
||||
# python3 -c "import secrets; print(secrets.token_hex(32))"
|
||||
SECRET_KEY=change_this_to_a_random_secret_key
|
||||
|
||||
# ── Host port (what port Unraid exposes) ──────────────────────────
|
||||
# Default is 5055 — change if that port is already in use
|
||||
HOST_PORT=5055
|
||||
|
||||
# ── Media server host ─────────────────────────────────────────────
|
||||
# LAN IP of the machine running Sonarr, Radarr, etc.
|
||||
ARR_HOST=192.168.1.100
|
||||
|
||||
# ── Sonarr ────────────────────────────────────────────────────────
|
||||
SONARR_API_KEY=your_sonarr_api_key_here
|
||||
# Optional overrides (defaults to ARR_HOST:8989):
|
||||
# SONARR_HOST=192.168.1.100
|
||||
# SONARR_URL=http://192.168.1.100:8989
|
||||
|
||||
# ── Radarr ────────────────────────────────────────────────────────
|
||||
RADARR_API_KEY=your_radarr_api_key_here
|
||||
# Optional overrides (defaults to ARR_HOST:7878):
|
||||
# RADARR_HOST=192.168.1.100
|
||||
# RADARR_URL=http://192.168.1.100:7878
|
||||
|
||||
# ── SABnzbd ───────────────────────────────────────────────────────
|
||||
SABNZBD_API_KEY=your_sabnzbd_api_key_here
|
||||
# Optional overrides (defaults to ARR_HOST:8080):
|
||||
# SABNZBD_HOST=192.168.1.100
|
||||
# SABNZBD_PORT=8080
|
||||
|
||||
# ── Tautulli ──────────────────────────────────────────────────────
|
||||
TAUTULLI_API_KEY=your_tautulli_api_key_here
|
||||
# Optional overrides (defaults to ARR_HOST:8181):
|
||||
# TAUTULLI_HOST=192.168.1.100
|
||||
# TAUTULLI_PORT=8181
|
||||
|
||||
# ── Prowlarr ──────────────────────────────────────────────────────
|
||||
PROWLARR_API_KEY=your_prowlarr_api_key_here
|
||||
# Optional overrides (defaults to ARR_HOST:9696):
|
||||
# PROWLARR_HOST=192.168.1.100
|
||||
# PROWLARR_PORT=9696
|
||||
|
||||
# ── Ombi ──────────────────────────────────────────────────────────
|
||||
OMBI_API_KEY=your_ombi_api_key_here
|
||||
# Optional overrides (defaults to ARR_HOST:3579):
|
||||
# OMBI_HOST=192.168.1.100
|
||||
# OMBI_PORT=3579
|
||||
Loading…
Add table
Add a link
Reference in a new issue