.env.exampleā¢1.72 kB
# Pitstop F1 MCP Server Configuration
# Copy this file to .env and customize as needed
# ============================================================================
# ENVIRONMENT
# ============================================================================
# Environment mode: "development" or "production"
# Development: detailed logs, error traces, human-readable output
# Production: JSON logs, masked errors, optimized performance
PITSTOP_ENV=development
# ============================================================================
# LOGGING
# ============================================================================
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
PITSTOP_LOG_LEVEL=INFO
# ============================================================================
# CACHING
# ============================================================================
# Enable/disable caching for improved performance
PITSTOP_ENABLE_CACHING=true
# Cache time-to-live in seconds (default: 300 = 5 minutes)
PITSTOP_CACHE_TTL=300
# ============================================================================
# RATE LIMITING
# ============================================================================
# Enable/disable rate limiting per client
PITSTOP_RATE_LIMIT_ENABLED=false
# Maximum requests per hour per client (if rate limiting is enabled)
PITSTOP_RATE_LIMIT=1000
# ============================================================================
# TIMEOUTS
# ============================================================================
# Default timeout for most operations in seconds
PITSTOP_TIMEOUT=30
# Timeout for telemetry operations in seconds (telemetry can be slower)
PITSTOP_TELEMETRY_TIMEOUT=60