cstro / tracker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tracker App

Todo List

  • Typings for the firestore API
  • Maybe add a form library?

Categories

https://localfirstbank.com/article/budgeting-101-personal-budget-categories/

Transactions

  • Purchase (money out of an account)
  • Payment (money into an account)
  • Transfer (money from one account to another)

Purchase

{
  id: string,
  type: 'purchase',
  date: string,
  amount: number,
  description: string,
  category: string,
  account: string,
  payee: string,
}
{
  id: string,
  type: 'payment',
  date: string,
  amount: number,
  description: string,
  category: string,
  account: string,
  sender: string,
}

About


Languages

Language:TypeScript 96.6%Language:JavaScript 2.0%Language:CSS 1.4%