1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

FreshRSS custom service. (#672)

Add FreshRSS custom service.
This commit is contained in:
thedroid 2024-10-26 09:48:03 -05:00 committed by GitHub
parent 0e5106c42a
commit cd25756fd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 124 additions and 0 deletions

View file

@ -40,6 +40,7 @@ within Homer:
- [OpenHAB](#openhab)
- [Jellystat](#jellystat)
- [Home Assistant](#home-assistant)
- [FreshRSS](#freshrss)
> [!IMPORTANT]
> Using smart cards will probably requires
@ -500,3 +501,15 @@ You need to set the type to HomeAssistant, provide an api key and enable cors on
```
To create an API token on HomeAssistant, follow the [official documentation here](https://developers.home-assistant.io/docs/auth_api/#long-lived-access-token).
To enable cors on HomeAssistant, edit your `configuration.yml` and add the IP of Homer to `https: cors_allowed_origins`
## FreshRSS
The FreshRSS service displays unread and subscriptions counts from your FreshRSS server.
```yaml
- name: "FreshRSS"
type: "FreshRSS"
username: "<-- Your username -->"
password: "<-- Your password -->"
updateInterval: 5000 # (Optional) Interval (in ms) for updating the stats
```