# ============================================ # Application Configuration # ============================================ PORT=3000 NODE_ENV=development FRONTEND_URL=http://localhost:5173 # ============================================ # Database Configuration # ============================================ # Port 5433 is used to avoid conflicts with local PostgreSQL DATABASE_URL="postgresql://postgres:changeme@localhost:5433/vip_coordinator" # ============================================ # Redis Configuration (Optional) # ============================================ # Port 6380 is used to avoid conflicts with local Redis REDIS_URL="redis://localhost:6380" # ============================================ # 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="your-tenant.us.auth0.com" AUTH0_AUDIENCE="https://your-api-identifier" AUTH0_ISSUER="https://your-tenant.us.auth0.com/" # ============================================ # Flight Tracking API (Optional) # ============================================ AVIATIONSTACK_API_KEY="your-aviationstack-api-key"