A simple .NET worker that fetches the weather every 10 seconds.
This project serves as a sandbox / demo on how to architect a worker project in .NET.
The project uses WeatherApi so you will need to first create a
free API key there and insert it in a secrets.json
file at the root of the project.
Like that :
{
"WeatherApi.com": {
"ApiKey": "YOUR_API_KEY_HERE"
}
}
Enjoy!