Receives Coder webhooks and sends Pushover notifications.
cd apps/coder-webhook-notifier
npm installPUSHOVER_USER=your_pushover_user_key
PUSHOVER_TOKEN=your_pushover_app_token
PORT=3002 # optional
PUSHOVER_USER=xxx PUSHOVER_TOKEN=xxx npm startPOST /webhook- Receives Coder webhook eventsGET /health- Health check
curl -X POST http://localhost:3002/webhook \
-H "Content-Type: application/json" \
-d '{"title":"Test","body":"Test message","payload":{"notification_name":"Test"}}'