An open API service indexing awesome lists of open source software.

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.

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]