/cfcoursapp

First Rails App from The CareerFoundry Web Developer Course

Primary LanguageRuby

#This is the README file for the CareerFoundry Logo #Web Development Course Rails Demo App

The demo application can be found at afbikeberlin.herokuapp.com

###There are key learnings for this app

  1. Follow up and build on learnings from the Front End Web section of the course
  2. Build on Ruby knowledge
  3. Familiarize and note down key learnings from the lesssons about creating web applications using the Rails framework.
  4. Applying basic AJAX in Rails to save on page reloads

####Models Used for this application

  1. User model - has_many :orders, has_many :products, has_many :comments
  2. Product model - _belongs_to :users, :orders, has_many :comments,
  3. Order model - has_many :products
  4. Comment model - includes comment and rating attributes