Notifications
Get notified about deploys, failures, and server events.
Supported Channels
Section titled “Supported Channels”| Channel | Setup |
|---|---|
| Email address | |
| Slack | Webhook URL |
| Discord | Webhook URL |
| Telegram | Bot token + chat ID |
| Webhook | Any HTTPS endpoint |
Create a Notification
Section titled “Create a Notification”Go to Notifications → Add Channel. Select channel type, event type, and configure.
wokku notifications:add --channel slack --event deploy \ --url https://hooks.slack.com/services/...curl -X POST https://wokku.cloud/api/v1/notifications \ -H "Authorization: Bearer $TOKEN" \ -d '{"channel": "slack", "event": "deploy", "config": {"url": "https://hooks.slack.com/..."}}'Ask Claude: “Set up a Slack notification for deploy failures”
Tap Notifications → + to add a channel.
Event Types
Section titled “Event Types”| Event | Description |
|---|---|
| deploy | Triggered on successful deploy |
| failure | Triggered on deploy failure |
| all | All events (deploy, failure, server status changes) |
Remove
Section titled “Remove”Go to Notifications → click delete next to the channel.
wokku notifications:remove NOTIFICATION_IDcurl -X DELETE https://wokku.cloud/api/v1/notifications/ID \ -H "Authorization: Bearer $TOKEN"Ask Claude: “Delete notification channel ID”
Tap Notifications → swipe to delete.