Skip to content

Latest commit

 

History

History
34 lines (17 loc) · 1.01 KB

README.md

File metadata and controls

34 lines (17 loc) · 1.01 KB

Planning Poker

An app that will allow a software development team to play Planning Poker

Description

Welcome! This app is designed to allow a software development team to play "Planning Poker", a game used to estimate how much time different development tasks will take. To learn more about Planning Poker, check out the article on wikipedia (http://en.wikipedia.org/wiki/Planning_poker). The app will run in your browser and allow your team to silently vote on tasks, then reveal the results.

How to start the node server

Clone the repository, open a command line/terminal, and cd into the directory.

Next, start the server by typing:

npm install

then:

PORT=1337 node app.js

How to run the app

Once the server is running, open the app in your browser by navigating to: localhost:1337

You can open multiple tabs to see how multiple users can submit their estimations and view the results.

How to deploy the app

To rebundle:

browserify site/poker.js > site/bundle.js

Thanks for viewing!