Server for scrum poker meetings.
- node.js (0.8.x)
- express (3.0.x)
- coffeecup (0.3.x)
- socket.io (0.9.x)
For running the tests:
- vows (0.6.x)
to install, use:
npm install
to run tests, use:
npm test
/ GET enter username
/login POST[username] connect session id with username
/channel GET list of channels
/channel POST[name] create channel
/channel/<name> GET join channel
/logout GET leave all channels
/channel/<name>/story GET list stories of channel
/channel/<name>/story POST[task,description] create story
/channel/<name>/story/<id> PUT[points] poker story
/channel/<name>/story/<id> GET read results
- channel creator = story creator
- start voting
- vote!
- collect results and display
- revote
- close and remove story
- close and remove channel
- auto close off channels?
- auto logout session?
- show a list of users in channel?