Compare commits
3
Commits
69f374635e
...
f2a694917e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f2a694917e | ||
|
|
334c08133c | ||
|
|
58cf3f0ee5 |
@@ -52,3 +52,31 @@ HOMEPAGE_VAR_PATCHMON_AUTH=Basic base64EncodedCredentialsHere
|
|||||||
# Long-lived access token, created under your HA user profile > Security >
|
# Long-lived access token, created under your HA user profile > Security >
|
||||||
# Long-lived access tokens
|
# Long-lived access tokens
|
||||||
HOMEPAGE_VAR_HOMEASSISTANT_TOKEN=your-home-assistant-long-lived-access-token
|
HOMEPAGE_VAR_HOMEASSISTANT_TOKEN=your-home-assistant-long-lived-access-token
|
||||||
|
|
||||||
|
# --- JDownloader widget ---
|
||||||
|
# My.JDownloader.org account credentials (not a local login - JDownloader
|
||||||
|
# has no local HTTP API, remote control goes through the MyJDownloader
|
||||||
|
# cloud service). The device/instance name itself (e.g. "jdownloader@docker")
|
||||||
|
# is not a secret and is set directly in services.yaml as "client".
|
||||||
|
HOMEPAGE_VAR_JDOWNLOADER_USERNAME=your-myjdownloader-email
|
||||||
|
HOMEPAGE_VAR_JDOWNLOADER_PASSWORD=your-myjdownloader-password
|
||||||
|
|
||||||
|
# --- SABnzbd widget ---
|
||||||
|
# API key, found in SABnzbd under Config > General
|
||||||
|
HOMEPAGE_VAR_SABNZBD_KEY=your-sabnzbd-api-key
|
||||||
|
|
||||||
|
# --- Sonarr widget ---
|
||||||
|
# API key, found in Sonarr under Settings > General
|
||||||
|
HOMEPAGE_VAR_SONARR_KEY=your-sonarr-api-key
|
||||||
|
|
||||||
|
# --- Jellyfin widget ---
|
||||||
|
# API key, created in Jellyfin under Dashboard > Advanced > API Keys
|
||||||
|
HOMEPAGE_VAR_JELLYFIN_KEY=your-jellyfin-api-key
|
||||||
|
|
||||||
|
# --- Emby widget ---
|
||||||
|
# API key, created in Emby under Settings > Advanced > Api Keys
|
||||||
|
HOMEPAGE_VAR_EMBY_KEY=your-emby-api-key
|
||||||
|
|
||||||
|
# --- Seerr widget (Overseerr/Jellyseerr) ---
|
||||||
|
# API key, found under Settings > General > API Key
|
||||||
|
HOMEPAGE_VAR_SEERR_KEY=your-seerr-api-key
|
||||||
|
|||||||
+41
-10
@@ -362,21 +362,11 @@
|
|||||||
href: http://192.168.30.135:8090
|
href: http://192.168.30.135:8090
|
||||||
description: FileBot Media Browser
|
description: FileBot Media Browser
|
||||||
|
|
||||||
- SabNZBd:
|
|
||||||
icon: sabnzbd.svg
|
|
||||||
href: http://192.168.30.135:8080
|
|
||||||
description: SabNZBd
|
|
||||||
|
|
||||||
- qBittorrent:
|
- qBittorrent:
|
||||||
icon: qbittorrent.svg
|
icon: qbittorrent.svg
|
||||||
href: http://192.168.30.135:8081
|
href: http://192.168.30.135:8081
|
||||||
description: qBittorrent
|
description: qBittorrent
|
||||||
|
|
||||||
- jDownloader:
|
|
||||||
icon: jdownloader.svg
|
|
||||||
href: http://192.168.30.135:8082/
|
|
||||||
description: jDownloader
|
|
||||||
|
|
||||||
- meTube:
|
- meTube:
|
||||||
icon: metube.svg
|
icon: metube.svg
|
||||||
href: http://192.168.30.135:8083
|
href: http://192.168.30.135:8083
|
||||||
@@ -422,23 +412,64 @@
|
|||||||
href: http://192.168.30.135:5830
|
href: http://192.168.30.135:5830
|
||||||
description: MKVToolNix
|
description: MKVToolNix
|
||||||
|
|
||||||
|
- SabNZBd:
|
||||||
|
icon: sabnzbd.svg
|
||||||
|
href: http://192.168.30.135:8080
|
||||||
|
description: SabNZBd
|
||||||
|
widget:
|
||||||
|
type: sabnzbd
|
||||||
|
url: http://192.168.30.135:8080
|
||||||
|
key: "{{HOMEPAGE_VAR_SABNZBD_KEY}}"
|
||||||
|
|
||||||
|
- jDownloader:
|
||||||
|
icon: jdownloader.svg
|
||||||
|
href: http://192.168.30.135:8082/
|
||||||
|
description: jDownloader
|
||||||
|
widget:
|
||||||
|
type: jdownloader
|
||||||
|
username: "{{HOMEPAGE_VAR_JDOWNLOADER_USERNAME}}"
|
||||||
|
password: "{{HOMEPAGE_VAR_JDOWNLOADER_PASSWORD}}"
|
||||||
|
client: jdownloader@docker
|
||||||
|
|
||||||
- Media:
|
- Media:
|
||||||
- Jellyfin:
|
- Jellyfin:
|
||||||
icon: jellyfin.svg
|
icon: jellyfin.svg
|
||||||
href: https://jellyfin.vogt.de.com/
|
href: https://jellyfin.vogt.de.com/
|
||||||
description: Jellyfin
|
description: Jellyfin
|
||||||
|
widget:
|
||||||
|
type: jellyfin
|
||||||
|
url: https://jellyfin.vogt.de.com
|
||||||
|
key: "{{HOMEPAGE_VAR_JELLYFIN_KEY}}"
|
||||||
|
enableBlocks: true
|
||||||
|
enableNowPlaying: true
|
||||||
|
|
||||||
- Emby:
|
- Emby:
|
||||||
icon: emby.svg
|
icon: emby.svg
|
||||||
href: https://emby.vogt.de.com/
|
href: https://emby.vogt.de.com/
|
||||||
description: Emby
|
description: Emby
|
||||||
|
widget:
|
||||||
|
type: emby
|
||||||
|
url: https://emby.vogt.de.com
|
||||||
|
key: "{{HOMEPAGE_VAR_EMBY_KEY}}"
|
||||||
|
enableBlocks: true
|
||||||
|
enableNowPlaying: true
|
||||||
|
|
||||||
- Sonarr:
|
- Sonarr:
|
||||||
icon: sonarr.svg
|
icon: sonarr.svg
|
||||||
href: https://sonarr.vogt.de.com/
|
href: https://sonarr.vogt.de.com/
|
||||||
description: Sonarr
|
description: Sonarr
|
||||||
|
widget:
|
||||||
|
type: sonarr
|
||||||
|
url: http://192.168.30.132:8989
|
||||||
|
key: "{{HOMEPAGE_VAR_SONARR_KEY}}"
|
||||||
|
enableQueue: true
|
||||||
|
|
||||||
- Seerr:
|
- Seerr:
|
||||||
icon: overseerr.svg
|
icon: overseerr.svg
|
||||||
href: https://os.vogt.de.com
|
href: https://os.vogt.de.com
|
||||||
description: Seerr
|
description: Seerr
|
||||||
|
widget:
|
||||||
|
type: seerr
|
||||||
|
url: https://os.vogt.de.com
|
||||||
|
key: "{{HOMEPAGE_VAR_SEERR_KEY}}"
|
||||||
|
fields: ["pending", "approved", "completed"]
|
||||||
|
|||||||
Reference in New Issue
Block a user