https://github.com/ananto30/story-point
👕 Story pointing (or T-shirt sizing) app built with Svelte
https://github.com/ananto30/story-point
express nodejs socket-io svelte
Last synced: 9 months ago
JSON representation
👕 Story pointing (or T-shirt sizing) app built with Svelte
- Host: GitHub
- URL: https://github.com/ananto30/story-point
- Owner: Ananto30
- License: mit
- Created: 2021-02-13T14:19:01.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-27T11:04:53.000Z (9 months ago)
- Last Synced: 2025-03-27T12:22:32.876Z (9 months ago)
- Topics: express, nodejs, socket-io, svelte
- Language: Svelte
- Homepage: https://storypoint.onrender.com/
- Size: 751 KB
- Stars: 20
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Story Point 🤷
[](https://depfu.com/github/Ananto30/story-point?project_id=34509)
[](https://hub.docker.com/r/ananto30/story-point)
[](https://app.codacy.com/gh/Ananto30/story-point/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
**Realtime voting (the story points) app.**
Oh! The sweating part of agile. This app just allows you to not get biased by others saying this worth less than 1 point. Just vote your point and see the result after the timer.

## Run now 🏃
Just use the docker image. It's available on [Docker Hub](https://hub.docker.com/r/ananto30/story-point).
```bash
docker pull ananto30/story-point
docker run -p 3000:3000 ananto30/story-point
```
## Getting started 🚀
```bash
make init
make start
```
*Note that you will need to have [Node.js](https://nodejs.org) installed.*
### Manual way
* Build the app
```bash
cd app
npm install
npm run build
```
* Run the server
```bash
cd server
npm install
npm start
```
## Docker 🚢
```bash
make docker-build
make docker-run
```