Spaces:
Build error
Build error
File size: 1,265 Bytes
ef73937 | 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 38 39 40 41 42 43 44 45 46 47 | # =============================================================================
# WhatsApp Channel Directory - Environment Configuration
# =============================================================================
# Application
NODE_ENV=development
PORT=3000
APP_URL=http://localhost:3000
# Session & Security
SESSION_SECRET=your-super-secret-session-key-min-32-chars
SESSION_TTL_DAYS=30
CSRF_SECRET=your-csrf-secret-key-min-32-chars
# Password Hashing (Argon2id)
ARGON2_MEMORY=65536
ARGON2_ITERATIONS=3
ARGON2_PARALLELISM=4
# Groq AI (Content Moderation)
GROQ_API_KEY=your-groq-api-key
GROQ_MODELS=llama-3.1-70b-versatile,llama-3.1-8b-instant,gemma2-9b-it
# Scraper Configuration
SCRAPER_RATE_LIMIT=10
SCRAPER_INTERVAL_MS=6000
WHATSAPP_CHANNEL_REGEX=^https://chat\.whatsapp\.com/[A-Za-z0-9]{22}$
# VPN/Proxy Detection (optional - set API key to enable)
IPAPI_KEY=
VPN_DETECTION_ENABLED=true
# Captcha (hCaptcha or Turnstile)
CAPTCHA_PROVIDER=hcaptcha
CAPTCHA_SECRET_KEY=your-captcha-secret-key
CAPTCHA_SITE_KEY=your-captcha-site-key
# Admin Initial User (first user created becomes admin automatically)
ADMIN_INIT_USERNAME=admin
ADMIN_INIT_PASSWORD=change-me-on-first-login
# Logging
LOG_LEVEL=info
LOG_DIR=./data/logs
# Data Directory
DATA_DIR=./data |