Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakobferdinand/signalrsample
A Sample Project where a two clients communicate per SignalR via a WebServer and data is persisted in a MongoDb. Everything is automatically set up with docker-compose
https://github.com/jakobferdinand/signalrsample
Last synced: about 2 months ago
JSON representation
A Sample Project where a two clients communicate per SignalR via a WebServer and data is persisted in a MongoDb. Everything is automatically set up with docker-compose
- Host: GitHub
- URL: https://github.com/jakobferdinand/signalrsample
- Owner: JakobFerdinand
- Created: 2019-10-04T09:24:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-27T13:43:35.000Z (almost 2 years ago)
- Last Synced: 2023-11-13T19:24:46.967Z (about 1 year ago)
- Language: C#
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SignalRSample
A Sample Project where a two clients communicate per SignalR via a WebServer and data is persisted in a MongoDb. Everything is automatically set up with docker-compose## Setup
To run everything open three terminals.
**Terminal 1**
```
docker-compose up
```There are two public services running now:
```
http://localhost:8181/ -- the SignalR Service
http://localhost:8182/ -- the Elm Web Frontend
```**Terminal 2**
```
cd ./TheReceiverClient
dotnet run
```**Terminal 3**
```
cd ./TheSenderClient
dotnet run
```