Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 788 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 788 Bytes

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.