- Build docker image:
docker build . -t chriszo111/planningpawker:latest
a. Forlinux/amd64
:docker buildx build --platform linux/amd64 . -t chriszo111/planningpawker:latest_amd64
- Run docker container:
docker run -d -it --rm -p 9000:8080/tcp chriszo111/planningpawker:latest
You can now access the app by visiting http://localhost:8080
in your browser.
- Make sure you have
node.js
,npm
andyarn
installed.
- Run
npm install
in the root folder - Run server with
node main.js
- Navigate to frontend directory
cd ./frontend
- Install packages
yarn install
- Start development server
yarn start
You can now access the app by visiting http://localhost:3000
in your browser.