Documentation update

This commit is contained in:
Bastien Wirtz 2022-07-11 22:07:15 +02:00
parent 5609315fe7
commit ce391840e5
3 changed files with 10 additions and 27 deletions

View File

@ -152,7 +152,7 @@ services:
# background: red # optional color for card to set color directly without custom stylesheet # background: red # optional color for card to set color directly without custom stylesheet
``` ```
View [Custom Services](customservices.md) for details about all available custom services (like PiHole) and how to configure them. View **[Custom Services](customservices.md)** for details about all available custom services (like `PiHole`) and how to configure them.
If 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)): If 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)):
@ -180,27 +180,4 @@ You can read the [bulma modifiers page](https://bulma.io/documentation/modifiers
## PWA Icons ## PWA Icons
In 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: See icons documentation [here](https://github.com/bastienwirtz/homer/blob/main/public/assets/icons/README.md).
```bash
npx vue-pwa-asset-generator -a {your_512x512_source_png} -o {your_output_folder}
```
## Supported services
Currently 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.
- PiHole
- AdGuardHome
- PaperlessNG
- Mealie
## Additional configuration
### Paperless
For Paperless you need an API-Key which you have to store at the item in the field `apikey`.
### Mealie
First 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.

View File

@ -19,6 +19,7 @@ within Homer:
+ [Emby / Jellyfin](#emby--jellyfin) + [Emby / Jellyfin](#emby--jellyfin)
+ [Uptime Kuma](#uptime-kuma) + [Uptime Kuma](#uptime-kuma)
+ [Tautulli](#tautulli) + [Tautulli](#tautulli)
+ [Mealie](#mealie)
If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page. If you experiencing any issue, please have a look to the [troubleshooting](troubleshooting.md) page.
@ -223,3 +224,8 @@ endpoint pointing to Tautulli!
type: "Tautulli" type: "Tautulli"
apikey: "MY-SUPER-SECRET-API-KEY" apikey: "MY-SUPER-SECRET-API-KEY"
``` ```
## Mealie
First 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.

View File

@ -5,11 +5,11 @@ If you want to contribute to Homer, please read the [contributing guidelines](ht
```sh ```sh
# Using yarn (recommended) # Using yarn (recommended)
yarn install yarn install
yarn serve yarn dev
# **OR** Using npm # **OR** Using npm
npm install npm install
npm run serve npm run dev
``` ```
## Custom services ## Custom services