Planning Poker is a game used on the Scrum framework to estimate relative effort or size of a task in the software development process. This implementation aims to provide a very simple and easy to use UI/UX, without unnecessary features. It uses peerjs to stablish the communication between a host and clients.
Try the demo!
This project was bootstraped using create-react-app
, so all the scripts included in this tool are available. Also, we use peerjs server to develop locally.
Start the local server
Start a local server by running:
yarn start-server
The server will be available at localhost:9000
Start the web app
Just run:
yarn start
The web app will be available at localhost:3000
Changing the server configuration
We are running a free heroku server for the demo. Please don't use this server for yourself. You can change the default server at src/services/settings.ts
. The options available are the same as in the Peer constructor. In the future, environment settings will be implemented.