Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.39 KB

README.md

File metadata and controls

54 lines (37 loc) · 1.39 KB

Story Point 🤷

Depfu docker Codacy Badge

Realtime voting (the story points) app.

Oh! The sweating part of agile. This app just allows you to not get biased by others saying this worth less than 1 point. Just vote your point and see the result after the timer.

Run now 🏃

Just use the docker image. It's available on Docker Hub.

docker pull ananto30/story-point
docker run -p 3000:3000 ananto30/story-point

Getting started 🚀

make init
make start

Note that you will need to have Node.js installed.

Manual way

  • Build the app
cd app
npm install
npm run build
  • Run the server
cd server
npm install
npm start

Docker 🚢

make docker-build
make docker-run