Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.25 KB

README.md

File metadata and controls

56 lines (38 loc) · 1.25 KB

Codaisseurify

A rails app to create artists and albums. This app uses Cloudinary.

screen shot 2017-05-05 at 16 46 54

Steps

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

  1. Setting up project
  2. Adding RSpec, Bootstrap
  3. Generating models
  4. Adding seeds
  5. Adding views
  6. Adding Cloudinary
  7. Refactoring

Database Structure

  1. Artist
  • first_name:string
  • last_name:string
  • age:integer
  • origin:string
  1. Song
  • title:string
  • album:string
  • release_date:date
  1. Photo
  • artist_id:integer(belongs_to :artist)
  • image:string

Running Locally

Make sure you have Ruby and Bundler installed.

git clone git@github.com:Cesurhan/codaisseurify.git
cd codaisseurify
bundle install
rails db:create db:migrate db:seed
rails server

Related documentation

For more information about using CarrierWave and Cloudinary, see these links: