You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
755 B
Bash
24 lines
755 B
Bash
# .env.example
|
|
|
|
# Evolution API
|
|
EVOLUTION_API_URL="https://example-url.com"
|
|
EVOLUTION_API_KEY="example-api-key"
|
|
EVOLUTION_API_INSTANCE="example-instance"
|
|
|
|
# WhatsApp
|
|
WHATSAPP_COMMUNITY_ID="example-community-id@g.us"
|
|
CHATBOT_PHONE_NUMBER="1234567890" # Número normalizado del bot; evita auto-respuestas
|
|
|
|
# Webhook de este servicio
|
|
WEBHOOK_URL="http://your-service-internal-url:3007" # URL interna a la que Evolution API enviará webhooks
|
|
PORT=3007
|
|
|
|
# Runtime
|
|
NODE_ENV="production"
|
|
|
|
# Opcional: intervalo de sincronización de grupos en milisegundos (por defecto: 86400000 = 24h)
|
|
# - Usar menor durante desarrollo (p.ej. 60000 = 1 minuto)
|
|
# - Mínimo 10000ms (10s) forzado en development
|
|
# - Formato: número sin comillas
|
|
# GROUP_SYNC_INTERVAL_MS=86400000
|