aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-04-07 21:27:37 +0200
committerGitHub <noreply@github.com>2022-04-07 21:27:37 +0200
commit000a46ee88742081ce8683db50f8d277b1d4f3da (patch)
tree52d5192cf113f16f5c28ee06d6aa5b3654bd44d8 /docs
parent31027f479157640bf8f3eafee443a182215176d5 (diff)
parent1275a8cce527fa02e32d9b490a12bafb38d95942 (diff)
downloadhomer-000a46ee88742081ce8683db50f8d277b1d4f3da.tar.gz
homer-000a46ee88742081ce8683db50f8d277b1d4f3da.tar.zst
homer-000a46ee88742081ce8683db50f8d277b1d4f3da.zip
Merge pull request #410 from espilioto/main
Emby integration
Diffstat (limited to 'docs')
-rw-r--r--docs/customservices.md24
1 files changed, 23 insertions, 1 deletions
diff --git a/docs/customservices.md b/docs/customservices.md
index cb68e1d..49798a8 100644
--- a/docs/customservices.md
+++ b/docs/customservices.md
@@ -6,7 +6,16 @@ apikey included in the configuration file is exposed to anyone who can access th
6if your homer instance is secured behind some form of authentication or access restriction. 6if your homer instance is secured behind some form of authentication or access restriction.
7 7
8Available services are in `src/components/`. Here is an overview of all custom services that are available 8Available services are in `src/components/`. Here is an overview of all custom services that are available
9within Homer. 9within Homer:
10+ [PiHole](#pihole)
11+ [OpenWeatherMap](#openweathermap)
12+ [Medusa](#medusa)
13+ [Lidarr, Prowlarr, Sonarr and Radarr](#lidarr-prowlarr-sonarr-and-radarr)
14+ [PaperlessNG](#paperlessng)
15+ [Ping](#ping)
16+ [Prometheus](#prometheus)
17+ [Portainer](#portainer)
18+ [Emby](#emby)
10 19
11If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. 20If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
12 21
@@ -141,3 +150,16 @@ See https://docs.portainer.io/v/ce-2.11/user/account-settings#access-tokens
141 type: "Portainer" 150 type: "Portainer"
142 apikey: "MY-SUPER-SECRET-API-KEY" 151 apikey: "MY-SUPER-SECRET-API-KEY"
143``` 152```
153
154## Emby
155
156You need to set the type to Emby, provide an api key and choose which stats to show if the subtitle is disabled.
157
158```yaml
159- name: "Emby"
160 logo: "assets/tools/sample.png"
161 url: "http://192.168.0.151/"
162 type: "Emby"
163 apikey: "MY-SUPER-SECRET-API-KEY"
164 libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies.
165```