Skip to content

justmejulian/open-planning-poker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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