# Test Environment Configuration
# Copy this to .env for testing without Google Business Profile access
# Enable mock mode for testing
NODE_ENV=development
LOG_LEVEL=info
# Mock Google OAuth (not used in mock mode but required for config validation)
GOOGLE_CLIENT_ID=mock_client_id_for_testing
GOOGLE_CLIENT_SECRET=mock_client_secret_for_testing
GOOGLE_REDIRECT_URI=http://localhost:3000/auth/callback
# Server Configuration
PORT=3000
# Mock Testing Settings
MOCK_DELAY=200
ENABLE_MOCK_MODE=true
# Rate Limiting (relaxed for testing)
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_MAX_REQUESTS=1000