https://github.com/dgrebb/poolio
A pool tracking application.
https://github.com/dgrebb/poolio
Last synced: 12 months ago
JSON representation
A pool tracking application.
- Host: GitHub
- URL: https://github.com/dgrebb/poolio
- Owner: dgrebb
- Created: 2016-10-20T00:25:29.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-26T03:10:11.000Z (over 9 years ago)
- Last Synced: 2025-04-01T16:19:41.882Z (about 1 year ago)
- Language: JavaScript
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Application Structure #
## Endpoints ##
* /players/add (add a new player)
* /players/score/player (update a player's score)
* /game/start (start a new game)
## Views ##
* / (view leaderboard, or start a new game)
* /new-game start a new game / add a new player
* /active-game current game (new feature?) / winner select
* /leaderboard leaderboard
## Redis Data Model ##
* players:player -> Name [hash]
* game:players -> Player 1 [hash]
* game:players -> Player 2 [hash]
* scores -> Name(rank) [score]