Skip to content

jis3r/planning-poker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple web-based planning poker application.

Go to https://planning-poker-live.onrender.com if you want to take a look at the application or use it directly.

Getting started

To get the sourcecode you can either clone it via git clone https://github.com/jis3r/planning-poker.git or download it as a zip.

Backend

Start the project locally by navigating inside the project-folder and installing all dependencies with

npm install

Then you can start the backend in the same directory by using

npm run dev

The server now runs on your http://localhost:3000. You can change the port in the server.js file.

const PORT = process.env.PORT || 3000;

Frontend

Start the frontend by going to the frontend directory inside your project folder. Then load all dependencies with

npm install

You can start a development server on http://localhost:5000 with

npm run dev

Notice that this project-instance won't be connected with the backend. This is no problem as you don't need it seperatly hosted to use the app on port 3000.

To create an optimized version of the project, run

npm run build