https://github.com/cvigueras/planing-poker
  
  
    A simple planing-poker with SignalR 
    https://github.com/cvigueras/planing-poker
  
cqrs csharp dapper mediatr outside-in-tdd signalr sqlite-database tdd vuejs vuex-store
        Last synced: 8 months ago 
        JSON representation
    
A simple planing-poker with SignalR
- Host: GitHub
 - URL: https://github.com/cvigueras/planing-poker
 - Owner: cvigueras
 - License: mit
 - Created: 2023-05-20T14:38:55.000Z (over 2 years ago)
 - Default Branch: main
 - Last Pushed: 2024-03-30T10:35:51.000Z (over 1 year ago)
 - Last Synced: 2025-01-05T16:33:13.929Z (10 months ago)
 - Topics: cqrs, csharp, dapper, mediatr, outside-in-tdd, signalr, sqlite-database, tdd, vuejs, vuex-store
 - Language: C#
 - Homepage:
 - Size: 1.2 MB
 - Stars: 3
 - Watchers: 1
 - Forks: 0
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 - License: LICENSE
 
 
Awesome Lists containing this project
README
          # Create new shared game
Given
- An anonymous user.
When
- An anonymous user creates a new game.
- With the following details:
    - Title and description, createdBy, round time and date expiration game.
Then
- The game is created in the system returning a Game unique Guid.
# Get an existing game
Given
- An existing Game created.
When
- An anonymous user request the existing Game by the unique Id received.
Then
- The Game is returned with the following details:
    - UniqueId, Title, description, createdBy, round time, date expiration game, users associate to the Game and Card List Values.
# Add user an existing game
Given
- An anonymous user want to join in an existing Game.
When
- An anonymous user request to be added to new Game by Game unique Guid.
Then
- The Game is returned with the following details:
    - UniqueId, Title, description, createdBy, round time, date expiration game, user associate to the Game included him and Card List Values.
# A user add a Vote in Planing
Given
- An anonymous user into an existing Game.
When
- An anonymous user send a vote.
Then
- The Vote is registered for that user.
# All users in the same Game can watch all votes
Given
- An unknown number of users in the same game.
- All votes registered for all users.
When
- An anonymous user click on send Votes button.
Then
- Votes from all Users are shown in Player Panel.