Creatica goes Infrastructure-as-Code

Weather App

An app written in C# that uses the Open-Meteo API to get the weather for a given location.

  1. Build the Docker image.
docker build --tag weather .
  1. Run the Docker container.
docker run --name weather -d -p 8080:3000 weather
  1. cURL the endpoint to get the weather:
curl http://localhost:8080/weatherforecast\?latitude\=48.1\&longitude\=11.6