Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1 KB

README.md

File metadata and controls

35 lines (21 loc) · 1 KB

Planning Pocker

This is a project to help with sprint planning, where you can vote and at the end display the points and average, which is based on Node.js, Websocket and Typescript.

app screen shot

Running the app

You will need Node.js version 16+.

Start app in dev mode

To start the project you need to follow these steps.

  1. Run: npm install or yarn
  2. Run: npm run dev or yarn dev
  3. Check the app running at localhost:3000 🎉

Start app

To start the project you need to follow these steps.

  1. Run: npm install or yarn
  2. Run: npm run build or yarn build
  3. Run: npm run start or yarn start
  4. Check the app running at localhost:3000 🎉

Running on another port

To run on another PORT you just need to change the environment variable.

  1. Set a port ex.: PORT=8080
  2. Run: npm start or yarn start
  3. Check the app running at localhost:8080 🎉