mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 15:24:29 +00:00
- Integrate @formbricks/js for future surveys (FormbricksProvider) - Add WebhookForm component for unified form submission (contact/franchise/membership) - Update contact form with reason dropdown field - Update franchise form with new fields: estado, ciudad, socios checkbox - Update franchise benefits: manuals, training platform, RH system, investment $100k - Add Contacto link to desktop/mobile nav and footer - Update membership form to use WebhookForm with membership_id select - Update hero buttons to use #3E352E color consistently - Refactor contact/franchise pages to use new hero layout and components - Add webhook utility (lib/webhook.ts) for parallel submission to test+prod - Add email receipt hooks to booking endpoints - Update globals.css with new color variables and navigation styles - Docker configuration for deployment
44 lines
807 B
Plaintext
44 lines
807 B
Plaintext
# Evolution API Environment Variables
|
|
|
|
# Server
|
|
SERVER_TYPE=http
|
|
SERVER_PORT=8080
|
|
SERVER_URL=http://localhost:8080
|
|
|
|
# Telemetry
|
|
TELEMETRY=false
|
|
|
|
# CORS
|
|
CORS_ORIGIN=*
|
|
CORS_METHODS=GET,POST,PUT,DELETE
|
|
CORS_CREDENTIALS=true
|
|
|
|
# Logs
|
|
LOG_LEVEL=ERROR,WARN,DEBUG,INFO
|
|
LOG_COLOR=true
|
|
LOG_BAILEYS=error
|
|
|
|
# Instances
|
|
DEL_INSTANCE=false
|
|
|
|
# Persistent Storage (using local for now, can change to Supabase later)
|
|
DATABASE_ENABLED=false
|
|
DATABASE_PROVIDER=postgresql
|
|
DATABASE_CONNECTION_URI=postgresql://dummy:dummy@localhost:5432/dummy
|
|
|
|
# Use local cache instead
|
|
CACHE_LOCAL_ENABLED=true
|
|
|
|
# Authentication
|
|
AUTHENTICATION_API_KEY=ANCHOR23_API_KEY_CHANGE_THIS
|
|
|
|
# Language
|
|
LANGUAGE=en
|
|
|
|
# Session Config
|
|
CONFIG_SESSION_PHONE_CLIENT=Anchor23 API
|
|
CONFIG_SESSION_PHONE_NAME=Chrome
|
|
|
|
# QR Code
|
|
QRCODE_LIMIT=30
|
|
QRCODE_COLOR=#175197 |