A rails app to create artists and albums. This app uses Cloudinary.
These are the steps I followed when working on this app:
- Setting up project
- Adding RSpec, Bootstrap
- Generating models
- Adding seeds
- Adding views
- Adding Cloudinary
- Refactoring
- Artist
- first_name:string
- last_name:string
- age:integer
- origin:string
- Song
- title:string
- album:string
- release_date:date
- Photo
- artist_id:integer(belongs_to :artist)
- image:string
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
For more information about using CarrierWave and Cloudinary, see these links: