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.
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:
- SvelteKit as framework (which I very much recommend)
- Tailwindcss with daisyUI for styles
And as backend I choose:
- Firebase for saving and sharing data (mostly firestore)
As hosting platform I'm using Vercel, no stress.
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.
Everything you need to build a Svelte project, powered by create-svelte
.
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
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
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.