# EasyWebhook Environment Configuration
# Copy this file to .env and add your webhook URLs
# Discord Webhooks
# Get from: Discord Server Settings → Integrations → Webhooks
DISCORD_WEBHOOK=https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN
DISCORD_ALERTS=https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN
DISCORD_NOTIFICATIONS=https://discord.com/api/webhooks/YOUR_WEBHOOK_ID/YOUR_WEBHOOK_TOKEN
# Slack Webhooks
# Get from: https://api.slack.com/apps → Incoming Webhooks
SLACK_WEBHOOK=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
SLACK_ALERTS=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
SLACK_TEAM=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
# Custom Webhooks
# Any HTTP endpoint that accepts webhooks
CUSTOM_WEBHOOK=https://your-domain.com/webhook
API_WEBHOOK=https://api.example.com/hooks/your-hook-id
MONITORING_WEBHOOK=https://your-monitoring-service.com/hook
# Webhook naming conventions:
# - Use UPPERCASE for environment variable names
# - You can use any name you want (e.g., DISCORD_WEBHOOK, MY_DISCORD, etc.)
# - The system will match both with and without WEBHOOK_ prefix
# - Examples: DISCORD_WEBHOOK, WEBHOOK_DISCORD, MY_DISCORD_HOOK all work