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.
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.
Start the project locally by navigating inside the project-folder and installing all dependencies with
npm installThen you can start the backend in the same directory by using
npm run devThe server now runs on your http://localhost:3000. You can change the port in the server.js file.
const PORT = process.env.PORT || 3000;Start the frontend by going to the frontend directory inside your project folder. Then load all dependencies with
npm installYou can start a development server on http://localhost:5000 with
npm run devNotice 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