This commit is contained in:
DoTheEvo 2024-01-14 10:43:27 +01:00
parent 9eb3182812
commit 2f78dd675f
1 changed files with 8 additions and 8 deletions

View File

@ -2,11 +2,11 @@
###### guide-by-example ###### guide-by-example
![logo](https://i.imgur.com/41WzW04.png) ![logo](https://i.imgur.com/ZkGGeT5.png)
# Purpose & Overview # Purpose & Overview
Instant notifications if email feels old timey and crowded Instant push notifications if email feels old timey and crowded
* [gotify](https://github.com/gotify/server) * [gotify](https://github.com/gotify/server)
* [ntfy](https://github.com/binwiederhier/ntfy) * [ntfy](https://github.com/binwiederhier/ntfy)
@ -20,11 +20,11 @@ Instant notifications if email feels old timey and crowded
they need to share single account and so lack the ability to choose they need to share single account and so lack the ability to choose
what to get and what not to get. what to get and what not to get.
* **ntfy** - simple original approach to just subscribing to "topics" without * **ntfy** - simple original approach to just subscribing to "topics" without
authentification. Very simple single line push notification. authentification. Simple single line code for push notification.
Support for multiple user, supports ios. Support for multiple users, supports ios.
* **signal-cli-rest-api** - no gui, need a sim card phone number registred, * **signal-cli-rest-api** - no gui, needs a sim card, a phone number registred,
notification are just send to phone numbers. notification are send through that phone number.
Signal wide spread might make it a winner, since you are not asking people Signal wider spread might make it a winner, since you are not asking people
to install an another app. to install an another app.
Afte few weeks of tinkering with these... **ntfy is the winner for me**, for now.<br> Afte few weeks of tinkering with these... **ntfy is the winner for me**, for now.<br>
@ -82,7 +82,7 @@ ntfy.{$MY_DOMAIN} {
ntfy uses "topics" for categorization, which creates a very handy disconnect from ntfy uses "topics" for categorization, which creates a very handy disconnect from
sender and receiver.<br> sender and receiver.<br>
Lets say there's a minecraft server and there are notifications when someone Lets say there's a minecraft server and there are notifications when someone
joins. These notifications are send to a `minecraft` topic, not to a specific users. joins. These notifications are send to `minecraft` topic, not to specified users.
Users can subscribe to the topic if they want those notifications. Users can subscribe to the topic if they want those notifications.
This gives great flexibility and is the main reason why ntfy wins This gives great flexibility and is the main reason why ntfy wins
over other solutions. over other solutions.