# ============================================================================= # MiChangarrito - Docker Environment Variables # ============================================================================= # Copiar este archivo a .env y configurar los valores # cp .env.docker .env # ============================================================================= # ----------------------------------------------------------------------------- # DATABASE # ----------------------------------------------------------------------------- DB_USERNAME=michangarrito_dev DB_PASSWORD=MCh_dev_2025_secure DB_DATABASE=michangarrito_dev DB_PORT=5432 # ----------------------------------------------------------------------------- # REDIS # ----------------------------------------------------------------------------- REDIS_PORT=6379 # ----------------------------------------------------------------------------- # BACKEND # ----------------------------------------------------------------------------- BACKEND_PORT=3141 JWT_SECRET=CHANGE_THIS_IN_PRODUCTION_MIN_64_CHARS_RANDOM_STRING_HERE_1234567890 JWT_EXPIRES_IN=7d CORS_ORIGIN=http://localhost:3140 # ----------------------------------------------------------------------------- # FRONTEND # ----------------------------------------------------------------------------- FRONTEND_PORT=3140 VITE_API_URL=http://localhost:3141/api/v1 # ----------------------------------------------------------------------------- # WHATSAPP SERVICE # ----------------------------------------------------------------------------- WHATSAPP_PORT=3143 WHATSAPP_TOKEN= WHATSAPP_PHONE_NUMBER_ID= WHATSAPP_BUSINESS_ACCOUNT_ID= WHATSAPP_VERIFY_TOKEN= # ----------------------------------------------------------------------------- # STRIPE # ----------------------------------------------------------------------------- STRIPE_SECRET_KEY= STRIPE_WEBHOOK_SECRET= STRIPE_PUBLISHABLE_KEY= # ----------------------------------------------------------------------------- # LLM / AI # ----------------------------------------------------------------------------- OPENAI_API_KEY= LLM_MODEL=gpt-4o-mini # ----------------------------------------------------------------------------- # PRODUCTION (uncomment for production) # ----------------------------------------------------------------------------- # COMPOSE_PROFILES=production # CORS_ORIGIN=https://michangarrito.com # VITE_API_URL=https://api.michangarrito.com/api/v1