planning-app
v1.0.1
Published
Version `1.0.1`
Downloads
5
Readme
Planning Poker App
Version 1.0.1
Overview
Are you tired of using physical cards for your planning/sizing sessions?
Wish there was an interactive version instead that helped you determine the average, closest, and median sizes? That's not a problem.
Have strange story sizes? No problem. The app allows you to easily customize them.
This app can help you to simplify and streamline your agile planning session.
Here are some app features:
- Can be run with or without Docker
- Utilizes Socket.io for real-time updates
- Includes connection error handling to automatically re-connect clients if network blips occur
Screenshots
User View
Unrevealed sizes:
Revealed sizes:
Presentation View
Unrevealed sizes:
Revealed sizes:
Setup
Git
git clone https://github.com/mrodrig/planningPoker.git
cd planningPoker
npm run setup
npm start
GitHub Release
wget https://codeload.github.com/mrodrig/planningPoker/zip/1.0.1
unzip 1.0.1
cd planningPoker-1.0.1
npm run setup
npm start
Docker
git clone https://github.com/mrodrig/planningPoker.git
cd planningPoker
docker build -t planning .
docker/start.sh
docker/setup.sh
npm start
NPM
npm install planning-app
cd node_modules/planning-app
npm run setup
npm start
Customizing
Have special sizes that you would like to use? That's completely possible with this app.
Just open app/lib/envConfig.js
and change the cardSizes
property to include your options!
Proceed to start the app and your custom sizes should now appear.
Running
npm start
Updating
Git
git pull origin master
npm run setup
GitHub Release
Unfortunately there is no easy way to update a version which was installed via a Github release.
The simplest way to update would be to delete the directory and install the new version.
Testing
grunt test