Files
WEATHER/fetcher/config.example.json
2026-06-25 23:17:45 +00:00

23 lines
519 B
JSON

{
"location": {
"name": "Seattle",
"lat": 47.6062,
"lon": -122.3321
},
"providers": {
"openweathermap": {
"enabled": true,
"api_key": "YOUR_OPENWEATHERMAP_KEY",
"base_url": "https://api.openweathermap.org/data/2.5/forecast"
},
"weatherapi": {
"enabled": true,
"api_key": "YOUR_WEATHERAPI_KEY",
"base_url": "https://api.weatherapi.com/v1/forecast.json"
}
},
"output_dir": "/var/www/WEATHER/public_html/data",
"days": 5,
"units": "imperial"
}