# XSender WhatsApp Service - Configuration
# Most settings are managed from Laravel via API
#
# IMPORTANT: The API_KEY should match Laravel's WP_API_KEY for direct calls.
# However, Laravel will push its config (including API key) on first request,
# which will be persisted in storage/.runtime-config.json

# Server Configuration
NODE_ENV=production
SERVER_HOST=0.0.0.0
SERVER_PORT=3001

# API Key - Will be synced from Laravel automatically
# Only set this if you need direct API access without Laravel
API_KEY=

# Rate Limiting
RATE_LIMIT_WINDOW=60000
RATE_LIMIT_MAX_REQUESTS=100

# Logging
LOG_LEVEL=info
LOG_PRETTY=false
 