# Nowhere AI Agent Backend Configuration # Server Configuration NODE_ENV=development PORT=3001 FRONTEND_URL=http://localhost:3000 # AI Model API Keys OPENAI_API_KEY=your_openai_api_key_here ANTHROPIC_API_KEY=your_anthropic_api_key_here # Database Configuration REDIS_URL=redis://localhost:6379 POSTGRES_URL=postgresql://username:password@localhost:5432/nowhere_db # Authentication (Optional for development) JWT_SECRET=your_jwt_secret_here JWT_EXPIRES_IN=7d # Logging LOG_LEVEL=info # Rate Limiting RATE_LIMIT_POINTS=100 RATE_LIMIT_DURATION=60 VOICE_RATE_LIMIT_POINTS=50 # Voice Processing (Optional) AZURE_SPEECH_KEY=your_azure_speech_key_here AZURE_SPEECH_REGION=your_azure_region_here # Security CORS_ORIGIN=http://localhost:3000 HELMET_ENABLED=true # Development DEBUG=true ENABLE_SWAGGER=true