diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/configuration.md | 2 | ||||
-rw-r--r-- | docs/customservices.md | 24 |
2 files changed, 24 insertions, 2 deletions
diff --git a/docs/configuration.md b/docs/configuration.md index 2083be3..84a7ea7 100644 --- a/docs/configuration.md +++ b/docs/configuration.md | |||
@@ -5,7 +5,7 @@ Title, icons, links, colors, and services can be configured in the `config.yml` | |||
5 | ```yaml | 5 | ```yaml |
6 | --- | 6 | --- |
7 | # Homepage configuration | 7 | # Homepage configuration |
8 | # See https://fontawesome.com/icons for icons options | 8 | # See https://fontawesome.com/v5/search for icons options |
9 | 9 | ||
10 | # Optional: Use external configuration file. | 10 | # Optional: Use external configuration file. |
11 | # Using this will ignore remaining config in this file | 11 | # Using this will ignore remaining config in this file |
diff --git a/docs/customservices.md b/docs/customservices.md index 2e65f19..d9aa43f 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 | |||
6 | if your homer instance is secured behind some form of authentication or access restriction. | 6 | if your homer instance is secured behind some form of authentication or access restriction. |
7 | 7 | ||
8 | Available services are in `src/components/`. Here is an overview of all custom services that are available | 8 | Available services are in `src/components/`. Here is an overview of all custom services that are available |
9 | within Homer. | 9 | within 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 | ||
11 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. | 20 | If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. |
12 | 21 | ||
@@ -145,3 +154,16 @@ See https://docs.portainer.io/v/ce-2.11/user/account-settings#access-tokens | |||
145 | # - "raspberry" | 154 | # - "raspberry" |
146 | # - "local" | 155 | # - "local" |
147 | ``` | 156 | ``` |
157 | |||
158 | ## Emby | ||
159 | |||
160 | You need to set the type to Emby, provide an api key and choose which stats to show if the subtitle is disabled. | ||
161 | |||
162 | ```yaml | ||
163 | - name: "Emby" | ||
164 | logo: "assets/tools/sample.png" | ||
165 | url: "http://192.168.0.151/" | ||
166 | type: "Emby" | ||
167 | apikey: "MY-SUPER-SECRET-API-KEY" | ||
168 | libraryType: "music" #Choose which stats to show. Can be one of: music, series or movies. | ||
169 | ``` | ||