Skip to content

joshnothum/black_keys_analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Charts with Keys

Lyrical analysis of The Black Keys using regex and Chart.js.

Built With

AngularJS, Chart.js, Bulma

Getting Started

NPM Install

Prerequisites

Link to software that is required to install the app (e.g. node).

Installing

Steps to get the development environment running.

CREATE TABLE "users" (
  "id" serial primary key,
  "username" varchar(80) not null UNIQUE,
  "password" varchar(240) not null
);
CREATE TABLE "public"."album" (
    "id" serial,
    "title" text,
    "album_art" text,
    PRIMARY KEY ("id")
);
CREATE TABLE "public"."tracks" (
    "id" serial,
    "lyrics" character varying,
    "album_id" integer,
    PRIMARY KEY ("id"),
    FOREIGN KEY ("album_id") REFERENCES "public"."album"("id")
);

Screen Shot

screen shot 2018-02-27 at 1 18 30 am

Completed Features

High level list of items completed.

  • Lyrics are sorted and counted
  • Lyrics are displayed using Chart.js
  • Display album art to select album
  • Dropdown menu to select individual song
  • Filter by song
  • Filter by album

Next Steps

Features that you would like to add at some point in the future.

  • Add supplemental information with SongGenius API

Authors

  • Josh Nothum

Acknowledgments

  • Biz Z for some help with the logic and Prime Digital Academy for the workspace

About

A brief lyrical analysis of the songs by The Black Keys using regex and chart.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published