Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.75 KB

README.md

File metadata and controls

56 lines (40 loc) · 1.75 KB

Codaisseurify

Ruby Application for displaying artists and songs. CarrierWave was used for uploading the images to Cloudinary

Features:

  • Sort artists by name or by date of creation
  • Add and delete songs using Ajax
  • Delete artist

To Do:

  • Create and update artist
  • Update song

codaisseurify

codaisseurify


Database Structure

  1. Artists
  • name: string
  • bio: string
  1. Photos
  • artist_id: integer
  • image: string
  1. Songs
  • name: string
  • artist_id: integer

Running Locally

Make sure you have Ruby and Bundler installed.

git clone [email protected]:floris09/codaisseurify.git
cd codaisseurify
bundle install
rails db:create db:migrate db:seed
rails server

Test Suite

The following gems were used for testing: