A repository to show how pushing data the frontend works by using server side events.
Tech stack:
- nextjs
- duende identity server https://docs.duendesoftware.com/
- aspnetcore
- signalr
- web: contains the web frontend build with nextjs and react
- backend: contains the apis build with apsnetcore
- identity: contains the identity server build with aspnetcore and duende identity server
- Ensure running postgres on localhost:5432, user: postgres, password: docker
- Run identity server migrations
cd identity/
dotnet tool restore
cd src/IdentityServer
dotnet ef database update
- Start Identity Server
- Start Api1
- Start Web frontend