aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-07-13 13:46:03 -0700
committerGitHub <noreply@github.com>2022-07-13 13:46:03 -0700
commitc11c45a661addf377ac5f4773ba39f5ef66ec155 (patch)
tree204cd561549dd6424d7e07c88b042e3bce62d608 /docs
parentd57821b5fa8b994bc4082f7565a072090ff288a1 (diff)
parent0eca982f8bc89bbac3ed4fee248fc53b7c4c0527 (diff)
downloadhomer-c11c45a661addf377ac5f4773ba39f5ef66ec155.tar.gz
homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.tar.zst
homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.zip
Merge pull request #482 from bastienwirtz/vuejs-3
Vuejs 3
Diffstat (limited to 'docs')
-rw-r--r--docs/configuration.md27
-rw-r--r--docs/customservices.md6
-rw-r--r--docs/development.md4
3 files changed, 10 insertions, 27 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index a4da08b..10edf71 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -152,7 +152,7 @@ services:
152 # background: red # optional color for card to set color directly without custom stylesheet 152 # background: red # optional color for card to set color directly without custom stylesheet
153``` 153```
154 154
155View [Custom Services](customservices.md) for details about all available custom services (like PiHole) and how to configure them. 155View **[Custom Services](customservices.md)** for details about all available custom services (like `PiHole`) and how to configure them.
156 156
157If you choose to fetch message information from an endpoint, the output format should be as follows (or you can [custom map fields as shown in tips-and-tricks](./tips-and-tricks.md#mapping-fields)): 157If you choose to fetch message information from an endpoint, the output format should be as follows (or you can [custom map fields as shown in tips-and-tricks](./tips-and-tricks.md#mapping-fields)):
158 158
@@ -180,27 +180,4 @@ You can read the [bulma modifiers page](https://bulma.io/documentation/modifiers
180 180
181## PWA Icons 181## PWA Icons
182 182
183In order to easily generate all required icon preset for the PWA to work, a tool like [vue-pwa-asset-generator](https://www.npmjs.com/package/vue-pwa-asset-generator) can be used: 183See icons documentation [here](https://github.com/bastienwirtz/homer/blob/main/public/assets/icons/README.md).
184
185```bash
186npx vue-pwa-asset-generator -a {your_512x512_source_png} -o {your_output_folder}
187```
188
189## Supported services
190
191Currently the following services are supported for showing quick infos on the card. They can be used by setting the type to one of the following values at the item.
192
193- PiHole
194- AdGuardHome
195- PaperlessNG
196- Mealie
197
198## Additional configuration
199
200### Paperless
201
202For Paperless you need an API-Key which you have to store at the item in the field `apikey`.
203
204### Mealie
205
206First off make sure to remove an existing `subtitle` as it will take precedence if set. Setting `type: "Mealie"` will then show the number of recipes Mealie is keeping organized or the planned meal for today if one is planned. You will have to set an API key in the field `apikey` which can be created in your Mealie installation.
diff --git a/docs/customservices.md b/docs/customservices.md
index 3f14f8c..c9ce093 100644
--- a/docs/customservices.md
+++ b/docs/customservices.md
@@ -19,6 +19,7 @@ within Homer:
19+ [Emby / Jellyfin](#emby--jellyfin) 19+ [Emby / Jellyfin](#emby--jellyfin)
20+ [Uptime Kuma](#uptime-kuma) 20+ [Uptime Kuma](#uptime-kuma)
21+ [Tautulli](#tautulli) 21+ [Tautulli](#tautulli)
22+ [Mealie](#mealie)
22+ [Healthchecks](#healthchecks) 23+ [Healthchecks](#healthchecks)
23 24
24If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. 25If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
@@ -225,6 +226,11 @@ endpoint pointing to Tautulli!
225 apikey: "MY-SUPER-SECRET-API-KEY" 226 apikey: "MY-SUPER-SECRET-API-KEY"
226``` 227```
227 228
229## Mealie
230
231First off make sure to remove an existing `subtitle` as it will take precedence if set.
232Setting `type: "Mealie"` will then show the number of recipes Mealie is keeping organized or the planned meal for today if one is planned. You will have to set an API key in the field `apikey` which can be created in your Mealie installation.
233
228## Healthchecks 234## Healthchecks
229 235
230This service displays information about the configured status checks from the Healthchecks application. 236This service displays information about the configured status checks from the Healthchecks application.
diff --git a/docs/development.md b/docs/development.md
index a22ae0b..85781a1 100644
--- a/docs/development.md
+++ b/docs/development.md
@@ -5,11 +5,11 @@ If you want to contribute to Homer, please read the [contributing guidelines](ht
5```sh 5```sh
6# Using yarn (recommended) 6# Using yarn (recommended)
7yarn install 7yarn install
8yarn serve 8yarn dev
9 9
10# **OR** Using npm 10# **OR** Using npm
11npm install 11npm install
12npm run serve 12npm run dev
13``` 13```
14 14
15## Custom services 15## Custom services