/wgdone-chore-tracker

chore tracking app. to annoy your roomates how much more chores you do at home.

Primary LanguageTypeScriptApache License 2.0Apache-2.0

WgDone

Maintenance angular v8 firebase google auth

A chore tracking app to review which roommate does the most chores (me obviously). Annoy your roommates with caution.

Screenshots

screenshot 1 screenshot 2 screenshot 3 screenshot 4

Stack

Its running a frontend only PWA, and just requires a firebase storage. All CRUD operations are done directly against the firebase api, via the angularFire sdk.

You only need to setup a collection named tasks with a set of tasks.

example:

{
  "tasks": [
    {
      "name": "Staubwischen"
    },
    {
      "name": "Staubsaugen",
      "meta": {
        "type": "select",
        "select_label": "Raum",
        "select_options": ["Wohnzimmer", "Schlafzimmer", "Esszimmer"]
      }
    },
    {
      "name": "Wäsche Waschen",
      "meta": {
        "type": "input"
      }
    }
  ]
}

License

MIT. Do what you want with it.