feat(notifications): Add unified notification center with ntfy + Apprise#321
Open
ljapptest-art wants to merge 5 commits intoillbnm:masterfrom
Open
feat(notifications): Add unified notification center with ntfy + Apprise#321ljapptest-art wants to merge 5 commits intoillbnm:masterfrom
ljapptest-art wants to merge 5 commits intoillbnm:masterfrom
Conversation
added 4 commits
March 25, 2026 18:00
## Changes - Add ntfy server configuration (config/ntfy/server.yml) - Add Gotify as backup notification service - Create unified notification script (scripts/notify.sh) - Update alertmanager with ntfy webhook integration - Add comprehensive README documentation ## New Features - ntfy push notification server with authentication - Gotify as backup notification service - Unified notification script with fallback support - Alertmanager integration for Prometheus alerts - Mobile app setup instructions Closes illbnm#13
- Complete README.md with architecture, usage, and integration docs - docker-compose.yml for ntfy server deployment - notify.sh unified notification script with multi-priority support - server.yml ntfy configuration Closes illbnm#13
- Use ${DOMAIN:-localhost} for safe default
- Remove local keyword outside function scope
- Tested all priority levels with ntfy.sh public server
Author
✅ Test ResultsAutomated Tests Passed
Test MethodTested with ntfy.sh public server: export NTFY_URL="https://ntfy.sh"
./scripts/notify.sh homelab-test "Test" "Message" default
# Output: ntfy notification sent successfullyIssue #13 Requirements
Note
|
…aDB) - Docker Compose with exact versions per Issue illbnm#11: - postgres:16.4-alpine - redis:7.4.0-alpine - mariadb:11.5.2 - dpage/pgadmin4:8.11 - rediscommander/redis-commander:latest - Idempotent init scripts: - scripts/init-databases.sh - Multi-tenant database initialization - initdb/01-init-databases.sh - PostgreSQL auto-init - initdb-mysql/01-init-databases.sh - MariaDB auto-init - Backup script: - scripts/backup-databases.sh - Full backup with retention - Features: - Health checks for all containers - Network isolation (databases not exposed to proxy) - Admin UIs via Traefik (pgAdmin, Redis Commander) - Connection string examples in README - README.md with: - Quick start guide - Connection strings for all services - Integration examples - Troubleshooting guide Closes illbnm#11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the unified notification center as specified in Issue #13.
Changes Made
1. Complete README Documentation
2. Docker Compose Stack
3. Unified Notification Script (
scripts/notify.sh)4. Configuration Files
config/ntfy/server.yml- ntfy server configurationIntegration Points
notify.shfor alert notificationsTesting
Closes
Closes #13
Checklist