Realtime planning poker with SignalR.
Check out the demo!
PokeR is a realtime planning poker app built with .NET Core and Angular. It features a custom-built frontend with some slick animations to make your next planning session just a little bit nicer. There's also a REST API that you can use to customize the game to your liking.
PokeR uses Entity Framework Core in-memory. If you need persistence for some reason, you can swap this out for SQLite or another provider. Data is seeded on startup from the json files in the project's root directory. You can also edit options via the exposed REST API. Documentation for the API can be viewed in the Swagger UI at /swagger.
The easiest way to get going is by pulling down a ready-to-go image from Docker Hub.
docker run --name poker --restart always -d -p 80:80 halomademeapc/poker

/rooms/{roomId} or by going to the homepage and clicking on the "Join a room" button. The first person into the room (assumed to be the person who created it) is designated as the host and gets extra controls to manage voting.







To build
- .NET 6 SDK
- Node.js
To run
- .NET 6 Runtime
dotnet publish ./PokeR.csprojdotnet ./PokeR.dll