Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```