https://github.com/qaware/cloud-native-weather-dotnet
A simple weather REST service using .Net Core.
https://github.com/qaware/cloud-native-weather-dotnet
cloud-native docker dotnet-core flux hacktoberfest kustomize microservice skaffold tilt
Last synced: 3 months ago
JSON representation
A simple weather REST service using .Net Core.
- Host: GitHub
- URL: https://github.com/qaware/cloud-native-weather-dotnet
- Owner: qaware
- License: mit
- Created: 2022-06-27T22:25:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-27T15:09:33.000Z (over 2 years ago)
- Last Synced: 2025-05-14T03:15:14.095Z (5 months ago)
- Topics: cloud-native, docker, dotnet-core, flux, hacktoberfest, kustomize, microservice, skaffold, tilt
- Language: C#
- Homepage:
- Size: 1.27 MB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cloud-native Weather Service with .NET Core
This example implements a simple weather REST service using .NET Core.

## Build and run locally
```bash
$ tilt up
$ skaffold dev --no-prune=false --cache-artifacts=false
```## Exercise the application
```bash
$ curl -X GET http://localhost:18080/api/weather\?city\=Rosenheim
{"city":"Rosenheim","weather":"Clear"}$ curl -X GET http://localhost:18080/
$ open http://localhost:18080/
```## Lab Instructions
The instructions for the Cloud-native Experience Lab workshop can be found in [docs/README.md](docs/README.md).
## Maintainer
M.-Leander Reimer (@lreimer),
## License
This software is provided under the Apache v2.0 open source license, read the `LICENSE`
file for details.