https://github.com/cfryerdev/auctions-signalr-dotnet
A proof of concept auction system using dotnet, signalr, and inmemory database. This is for educational purposes
https://github.com/cfryerdev/auctions-signalr-dotnet
Last synced: 3 days ago
JSON representation
A proof of concept auction system using dotnet, signalr, and inmemory database. This is for educational purposes
- Host: GitHub
- URL: https://github.com/cfryerdev/auctions-signalr-dotnet
- Owner: cfryerdev
- License: mit
- Created: 2024-03-21T15:54:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-27T15:01:00.000Z (over 2 years ago)
- Last Synced: 2024-03-27T16:26:29.681Z (over 2 years ago)
- Language: C#
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Auctioneer Platform
This is an open source example of how to use signalr to create a modern bidding system with scaling in mind.
## Starting Redis
Simply run:
```bash
docker run -d --name redis-stack -p 6379:6379 -p 8001:8001 -e "REDIS_ARGS=--requirepass Auctioneer12345" redis/redis-stack:latest
```
You can then use local host creds with no username or password to access redis. This also comes with RedisInsights located here:
[http://localhost:8001](http://localhost:8001)
## Starting SqlServer
Simply run:
```bash
docker run -d --name sql-stack -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=Auctioneer12345" -p 1433:1433 -v ./scripts/create-database.sql:/docker-entrypoint-initdb.d mcr.microsoft.com/mssql/server:2022-latest
```