# ============================================ # Application Configuration # ============================================ PORT=3000 NODE_ENV=development FRONTEND_URL=http://localhost:5173 # ============================================ # Database Configuration # ============================================ DATABASE_URL="postgresql://postgres:changeme@localhost:5433/vip_coordinator" # ============================================ # Redis Configuration (Optional) # ============================================ REDIS_URL="redis://localhost:6379" # ============================================ # Auth0 Configuration # ============================================ # Get these from your Auth0 dashboard: # 1. Create Application (Single Page Application) # 2. Create API # 3. Configure callback URLs: http://localhost:5173/callback AUTH0_DOMAIN="dev-s855cy3bvjjbkljt.us.auth0.com" AUTH0_AUDIENCE="https://vip-coordinator-api" AUTH0_ISSUER="https://dev-s855cy3bvjjbkljt.us.auth0.com/" # ============================================ # Flight Tracking API (Optional) # ============================================ # Get API key from: https://aviationstack.com/ AVIATIONSTACK_API_KEY="your-aviationstack-api-key" # ============================================ # AI Copilot Configuration (Optional) # ============================================ # Get API key from: https://console.anthropic.com/ # Cost: ~$3 per million tokens ANTHROPIC_API_KEY="your-anthropic-api-key"