Rebuilding https://scrum-poker.org/ with ASP.NET, Angular and SignalR.
This project aims at demonstrating the use of the Angular frontend framework in conjunction with Microsoft ASP.NET as backend and Microsoft SignalR as the WebSocket-based communication system. It also demonstrates CI/CD using GitHub Actions as well as direct deployment to an Azure App Service instance.
This is a training project developed at ZEISS Digital Innovation.
This project was built and tested using Microsoft .NET Core 3.1.101 on Windows 10.
Simply open the scrum_poker.sln
solution and start the app using IIS Express.
- Run
dotnet restore
to install all backend dependencies. - Run
dotnet build --no-restore [--configuration Release]
to build the app. - Run
dotnet publish [-c Release] -o <YourDeploymentDirectory>
to- Install Angular frontend dependencies
- Build the Angular client app
- Make the finished app available in the
<YourDeploymentDirectory>
directory