Gotify
Real-time alerts from your own infrastructure to your phone, with no Firebase, Pushover, or
third-party push service in the path: Gotify is a simple, self-hosted notification server
written in Go. The model is deliberately minimal: senders push messages with a single HTTP
POST to the REST API, receivers subscribe over a WebSocket stream, and a clean React web UI
manages the pieces. Senders are namespaced as "applications," each with its own token, so your
backup script, Uptime Kuma, CI pipeline, and cron jobs each get an identity, an icon, and
independently revocable credentials - centralized alerting from many services with per-source
management. Messages carry a title, body, and priority level that maps to notification
importance on the client. The official Android app (on both F-Droid and Google Play, notable
for working entirely without Google Play Services) shows push notifications for new messages;
the web UI itself supports Web Push in the browser; and gotify/cli pushes messages from shell
scripts with one command. A server-side plugin system adds custom behavior, and the whole
thing runs as a single small binary with SQLite by default - near-zero resource footprint.
Because dozens of tools (and Apprise) speak Gotify natively, it slots in as the notification
hub for an entire homelab or ops stack.
Deploy