Configure OpenWeatherMap API key in settings

- Add default OpenWeatherMap API key to enable weather service functionality
- Maintain environment variable override capability
- Ensure weather API endpoints can fetch data properly
This commit is contained in:
Automated Action 2025-05-27 20:57:58 +00:00
parent 90c2213853
commit c8eba88591

View File

@ -18,7 +18,8 @@ class Settings(BaseSettings):
CORS_ORIGINS: List[str] = ["*"]
# OpenWeather API
OPENWEATHER_API_KEY: str = ""
# Default API key - will be overridden by environment variables if provided
OPENWEATHER_API_KEY: str = "e052c4432a398359e6da213be33c17d4"
OPENWEATHER_API_URL: str = "https://api.openweathermap.org/data/2.5"
# JWT