Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peterdeme/envoydotnetgrpc
A simple GRPC app, with Envoy as a reverse proxy.
https://github.com/peterdeme/envoydotnetgrpc
dotnetcore envoy grpc netcore
Last synced: 3 months ago
JSON representation
A simple GRPC app, with Envoy as a reverse proxy.
- Host: GitHub
- URL: https://github.com/peterdeme/envoydotnetgrpc
- Owner: peterdeme
- Created: 2017-09-30T19:38:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-30T21:34:50.000Z (over 7 years ago)
- Last Synced: 2024-11-02T09:24:39.793Z (3 months ago)
- Topics: dotnetcore, envoy, grpc, netcore
- Language: C#
- Size: 9.77 KB
- Stars: 18
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simple C# app with Envoy as a reverse proxy
The app runs GRPC and Kestrel server as well. Envoy will decide which endpoint to forward the message to based on its routing settings.# Prerequisites
- VS2017
- Docker
- .NET Core 2# How to run
In Powershell:
```powershell
git clone https://github.com/peterdeme/EnvoyDotnetGrpc.git
cd .\Envoy-GRPC-CSharp\Envoy-GRPC-CSharp\scripts\
.\Start.ps1
```
Now, Envoy is listening on localhost:9211.How to test with the client app:
```powershell
cd .\Envoy-GRPC-CSharp\Client
dotnet run
```