Skip to content

LucasHang/task-scorer

Repository files navigation

Presentation

Motivation

Teams that work with Scrum methodology often go through the scoring process of their tasks to plan a sprint. Unfortunately, my team run out of free online options for scoring, so I made my own.

This is Task Scorer, application for scoring anything you want in group using Fibonacci sequence.

Tech Stack

I was looking for something:

  • Fast to develop
  • With realtime updates
  • Auto-managed database and server
  • Something new to learn about
  • FREE!

So for developing the frontend I choose:

And as backend I choose:

  • Firebase for saving and sharing data (mostly firestore)

As hosting platform I'm using Vercel, no stress.

Application Flow

Application Flow

Experience

All the experience about task-scoring with the team I work with and the Task Scorer development will be shared at this Medium post: A perspective about Story Points.

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.