[READ-ONLY] Mirror of https://github.com/FoxxMD/komodo-utilities. Small utilities to enhance Komodo
gotify komodo
0

Configure Feed

Select the types of activity you want to include in your feed.

docs: Add readme

FoxxMD (Nov 5, 2024, 2:41 PM EST) 87b82f26 eb74bf0a

+38
+7
README.md
··· 1 + Small utilities to enhance [Komodo](https://komo.do) 2 + 3 + ## Gotify Alerter 4 + 5 + An [Alerter](https://komo.do/docs/resources#alerter) that pushes to [Gotify](https://gotify.net/) 6 + 7 + [See README](/gotify/README.md)
+31
gotify/README.md
··· 1 + A [Komodo](https://komo.do/) [Alerter](https://komo.do/docs/resources#alerter) for [Gotify](https://gotify.net/) 2 + 3 + # Usage 4 + 5 + Create a new container or stack with: 6 + 7 + * Gotify URL as env `GOTIFY_URL` 8 + * Gotify App Token as env `GOTIFY_API_KEY` 9 + 10 + ```yaml 11 + 12 + services: 13 + komodo-gotify: 14 + image: foxxmd/komodo-gotify-alerter:latest 15 + environment: 16 + - GOTIFY_URL=${GOTIFY_URL} 17 + - GOTIFY_API_KEY=${GOTIFY_API_KEY} 18 + ports: 19 + - "7000:7000" 20 + ``` 21 + 22 + Then, create a new Alerter of type `Custom` and point it to the IP of the started service: 23 + 24 + ``` 25 + [[alerter]] 26 + name = "gotify" 27 + [alerter.config] 28 + enabled = true 29 + endpoint.type = "Custom" 30 + endpoint.params.url = "http://192.168.YOUR.IP:7000" 31 + ```