Skip to content

fvnilo/modern-jazz-albums

Repository files navigation

Modern Jazz Album

A checklist to keep track of the listened albums listed by Learn Jazz Standards.

Getting Started

npm install
npm start

Then open your browser at http://localhost:8000.

Firebase Database

The setup is currently bound to one of my firebase project and needs authentication. It is possible to reproduce the same setup just by creating your own firebase project and having your database modeled as:

{
  "albums" : [ 
    {
      "id" : 0,
      "listened" : true,
      "title" : "Around the Corner - Grant Stewart"
    },
    ...
  ]
}

The app currently only supports login by email and password.