Public Beta

Notifications

Get notified about deploys, failures, and server events.

#Supported Channels

Channel Setup
Email Email address
Slack Webhook URL
Discord Webhook URL
Telegram Bot token + chat ID
Webhook Any HTTPS endpoint

#Create a Notification

Go to Notifications → Add Channel. Select channel type, event type, and configure.

bash
wokku notifications:add --channel slack --event deploy \
  --url https://hooks.slack.com/services/...
bash
curl -X POST https://wokku.dev/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

Event Description
deploy Triggered on successful deploy
failure Triggered on deploy failure
all All events (deploy, failure, server status changes)

#Remove

Go to Notifications → click delete next to the channel.

bash
wokku notifications:remove NOTIFICATION_ID
bash
curl -X DELETE https://wokku.dev/api/v1/notifications/ID \
  -H "Authorization: Bearer $TOKEN"

Ask Claude: “Delete notification channel ID”

Tap Notifications → swipe to delete.