Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.16 KB

README.md

File metadata and controls

61 lines (46 loc) · 1.16 KB

open-planning-poker

Online Planning poker that uses the Planning Poker cards by Redbooth.

login seleted cards show cards

Building and running on localhost

$ npm run build
$ npm run start

Developing on localhost

Frontend

With hot reload.

$ cd frontend
$ npm run dev

Backend

With hot reload.

$ cd server
$ npm run dev
$ cd frontend
$ npm run start

Visit: http://localhost:3000

Run as Container

Get the Docker image

You can use the public image

$ docker pull ghcr.io/justmejulian/open-planning-poker:latest

or build it yourself locally

$ docker build -t <container-name> .

Run the container

$ docker run -p 3000:3000 -d <container-name>

Use the same name as you have used when building the image. If you have pulled the image from the registry, use ghcr.io/justmejulian/open-planning-poker as <container-name>.

Visit: http://localhost:3000

Credits

Planning Poker cards by Redbooth