-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 1.42 KB
/
.env.example
File metadata and controls
37 lines (28 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# =============================================================================
# UNTHREAD WEBHOOK SERVER - ENVIRONMENT CONFIGURATION
# =============================================================================
# Copy this file to .env and fill in your actual values
# Only required variables are listed here. All other values use sensible defaults.
# =============================================================================
# ======= Application Configuration (Required) =======
# Server Port
# Port for the webhook server (default: 3000)
PORT=3000
# ======= Redis Configuration (Required) =======
# Redis Connection URL
# Docker (default): redis://redis-webhook:6379
# Local development: redis://localhost:6379
REDIS_URL=redis://redis-webhook:6379
# ======= Webhook Configuration (Required) =======
# Target Platform for Webhook Processing
# IMPORTANT: Cannot use reserved values: dashboard, unknown, buffered
# NOTE: Value is automatically converted to lowercase for canonical format
# Supported platforms: discord, telegram, whatsapp, messenger, slack, teams
TARGET_PLATFORM=discord
# Unthread Webhook Secret
# How to get: Unthread dashboard → Settings → Webhooks → Create webhook → Copy secret
UNTHREAD_WEBHOOK_SECRET=your_unthread_webhook_secret_here
# ======= Optional Development Override =======
# Node Environment (only set for development)
# Defaults to 'production' for production-safe logging
# NODE_ENV=development