Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.09 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.09 KB

Codaisseurify

Website i made during the 9 weeks course of Codaisseur.

The assignment was to make an Spotify like website on wich you can add and delete songs and artists through ajax

Steps

These are the steps I followed when working on this app:

  1. Setting up project
  2. Adding Bootstrap, jquery, devise, rspec,
  3. Setting up the database
  4. Setting up the models, and controllers.
  5. Adding views
  6. Add song feature
  7. Delete song feature
  8. Delete all songs feature

Database Structure

  1. Artists
  • name:string
  • genre:string
  1. Songs
  • name:string
  • artist_id:bigint
  1. Photos
  • artist_id:bigint
  • image:string

Running Locally

Make sure you have Ruby and Bundler installed.

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