All Projects → halomademeapc → pokeR

halomademeapc / pokeR

Licence: MIT license
Planning poker with SignalR

Programming Languages

typescript
32286 projects
C#
18002 projects
SCSS
7915 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to pokeR

aspnet-core-react-redux-playground-template
SPA template built with ASP.NET Core 6.0 + React + Redux + TypeScript + Hot Module Replacement (HMR)
Stars: ✭ 78 (+110.81%)
Mutual labels:  aspnetcore, signalr
ChatService
ChatService (SignalR).
Stars: ✭ 26 (-29.73%)
Mutual labels:  aspnetcore, signalr
dotNetify-react-native-demo
DotNetify + React Native + .NET Core demo
Stars: ✭ 43 (+16.22%)
Mutual labels:  aspnetcore, signalr
react-redux-aspnet-core-webapi
No description or website provided.
Stars: ✭ 34 (-8.11%)
Mutual labels:  aspnetcore, signalr
Signalrsimplechat
.NET 5 - ASP.NET Core 5 SignalR Simple Chat
Stars: ✭ 95 (+156.76%)
Mutual labels:  aspnetcore, signalr
AspNetCore.Client
On Build client generator for asp.net core projects
Stars: ✭ 14 (-62.16%)
Mutual labels:  aspnetcore, signalr
SignalR-Core-SqlTableDependency
Shows how the new SignalR Core works with hubs and sockets, also how it can integrate with SqlTableDependency API.
Stars: ✭ 36 (-2.7%)
Mutual labels:  aspnetcore, signalr
PugetSound
PugetSound allows you and your group to enjoy music together using Spotify.
Stars: ✭ 52 (+40.54%)
Mutual labels:  aspnetcore, signalr
Server
The core infrastructure backend (API, database, Docker, etc).
Stars: ✭ 8,797 (+23675.68%)
Mutual labels:  aspnetcore, signalr
Dotnetify
Simple, lightweight, yet powerful way to build real-time web apps.
Stars: ✭ 927 (+2405.41%)
Mutual labels:  aspnetcore, signalr
Aspnetcore Angular Signalr Typescript
An example of an Angular application using ASP.NET Core and SignalR
Stars: ✭ 288 (+678.38%)
Mutual labels:  aspnetcore, signalr
Aspnetcoreangularsignalr
SignalR ASP.NET Core Angular
Stars: ✭ 163 (+340.54%)
Mutual labels:  aspnetcore, signalr
Aspnetcore Angular Ngrx
🚀 An ASP.NET Core WebAPI Demo with an Angular Client using Ngrx store and effects and Signalr
Stars: ✭ 141 (+281.08%)
Mutual labels:  aspnetcore, signalr
Aspnetcoreangularsignalrsecurity
Security with ASP.NET Core, SignalR and Angular
Stars: ✭ 171 (+362.16%)
Mutual labels:  aspnetcore, signalr
Urbanization
A Micropolis (Simcity classic) inspired city building game written in C#
Stars: ✭ 66 (+78.38%)
Mutual labels:  signalr
MinimalApi
ASP.NET Core 7.0 - Minimal API Example - Todo API implementation using ASP.NET Core Minimal API, Entity Framework Core, Token authentication, Versioning, Unit Testing, Integration Testing and Open API.
Stars: ✭ 156 (+321.62%)
Mutual labels:  aspnetcore
TextMood
A Xamarin + IoT + Azure sample that detects the sentiment of incoming text messages, performs sentiment analysis on the text, and changes the color of a Philips Hue lightbulb
Stars: ✭ 52 (+40.54%)
Mutual labels:  signalr
Memoyu.MedicalShared
该项目为毕设项目,基于Xamarin开发,关于医疗数据共享平台。基本模式为通过第三方HIS、LIS等系统提交数据到本平台,平台进行处理后向患者用户展示数据。
Stars: ✭ 26 (-29.73%)
Mutual labels:  signalr
AspNetCoreIdentityEncryption
How to do manual encryption for ASP.NET Core Identity 2.1. Not that you should be doing it.
Stars: ✭ 51 (+37.84%)
Mutual labels:  aspnetcore
flutter chat
A full-featured (simple message, voice, video) flutter chat application by SignalR and WebRTC
Stars: ✭ 52 (+40.54%)
Mutual labels:  signalr

PokeR

Build Status Docker Pulls

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.

Quickstart

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

Overview

Room creation screen You can pick any integer that isn't already taken to be your room number. This number will appear in share links to your room. Options for the deck to play with are Modified Fibonacci (.5, 1, 2, 3, 5, 8, 13, 20) and T-Shirt Sizes, but more can be added by configuring the defaults JSON file or by posting new decks to the REST API at runtime.

Room join screen Users can join your room by going directly to /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.

Roster pane If you need to change who is in the host role, expanding the Roster tab on the left then dragging-and-dropping the crown icon onto another user will transfer ownership of the room to them.

Playfield Cards are played face-down and revealed once everyone has played. If someone changes their vote mid-round, you will see an animation of the original card being withdrawn and the new one being played in its stead.

Confetti If everybody happens to have the same vote, you'll be greeted with some celebratory confetti for the concensus courtesy of confetti-js. One danger with this is that people like it so much it can start to encourage groupthink.

Countdown If a user is AFK or otherwise responsive and is holding things up, the host can set a deadline for the voting round. Everyone will see the countdown and once time is up, votes will be revealed even if not everyone has responded.

New round button The host can begin a new round to clear out any existing votes and start things off fresh.

Theme icon Theme switcher The app will respect your OS dark mode preference by default. If you hover over the icon in the top-right corner, you can switch themes manually.

Requirements

To build

  • .NET 6 SDK
  • Node.js

To run

  • .NET 6 Runtime

Building

dotnet publish ./PokeR.csproj

Running

dotnet ./PokeR.dll
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].