Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jis3r/planning-poker
A simple web-based planning poker application.
https://github.com/jis3r/planning-poker
online-service planning-poker scrum-meetings scrum-poker tool web-application websocket
Last synced: 2 months ago
JSON representation
A simple web-based planning poker application.
- Host: GitHub
- URL: https://github.com/jis3r/planning-poker
- Owner: jis3r
- License: gpl-3.0
- Created: 2021-02-17T17:40:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T07:45:04.000Z (over 2 years ago)
- Last Synced: 2024-04-14T06:33:29.990Z (10 months ago)
- Topics: online-service, planning-poker, scrum-meetings, scrum-poker, tool, web-application, websocket
- Language: Svelte
- Homepage: https://planning-poker-live.onrender.com/
- Size: 6.01 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [Planning Poker](https://planning-poker-live.onrender.com)
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](https://github.com/jis3r/planning-poker/archive/refs/heads/master.zip).
## Backend
Start the project locally by navigating inside the project-folder and installing all dependencies with
```bash
npm install
```
Then you can start the backend in the same directory by using
```bash
npm run dev
```
The server now runs on your http://localhost:3000. You can change the port in the `server.js` file.
```javascript
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
```bash
npm install
```You can start a development server on http://localhost:5000 with
```bash
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
```bash
npm run build
```