GabrielAfflitto / music-buddy

A platform for looking up lyrics from your favorite artist along with general artist information.
https://music-buddy.herokuapp.com/
1 stars 0 forks source link
database lyrics rails

Music Buddy

About

This Rails application serves as a platform to look up song lyrics through the external MusixMatch API. Through the search bar in the header, look up a song by title, artist, album or even snippets of lyrics and you will be taken to a page with the search results. In addition to viewing song lyrics, you will be provided a link to view general artist information via the Wikipedia API, and also have the option to save those lyrics to your database. This application was created as the final project for module 3 of the backend program of Turing School of Software and Design

Setup

Run in Rails version 5.1.4

  1. Clone this repository:

git clone git@github.com:GabrielAfflitto/music-buddy.git

  1. Create and migrate the database:

rake db:{create, migrate}

  1. Run bundle

bundle install

  1. Run RSpec test suite:

rspec

  1. Boot the server:

rails s

  1. Visit localhost in the browser:

https://localhost:3000