# ============================================================================ # FleetMind MCP Server - Environment Configuration # For HuggingFace Space (Track 1) deployment # ============================================================================ # ============================================================================ # Google Maps API (REQUIRED) # ============================================================================ # Used for geocoding addresses and calculating routes # Get your API key at: https://console.cloud.google.com/google/maps-apis # Enable: Geocoding API and Directions API GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here # ============================================================================ # PostgreSQL Database Configuration (REQUIRED) # ============================================================================ # For local development, use localhost # For HuggingFace Space, use Neon or other cloud PostgreSQL # Get free PostgreSQL at: https://neon.tech DB_HOST=your-postgres-host.neon.tech DB_PORT=5432 DB_NAME=fleetmind DB_USER=your_db_user DB_PASSWORD=your_db_password # ============================================================================ # Server Configuration (OPTIONAL) # ============================================================================ # HuggingFace Space will set these automatically # Only needed for local SSE mode testing PORT=7860 HOST=0.0.0.0 # ============================================================================ # Logging (OPTIONAL) # ============================================================================ LOG_LEVEL=INFO LOG_FILE=logs/fleetmind.log