#This is the README file for the #Web Development Course Rails Demo App
The demo application can be found at afbikeberlin.herokuapp.com
###There are key learnings for this app
- Follow up and build on learnings from the Front End Web section of the course
- Build on Ruby knowledge
- Familiarize and note down key learnings from the lesssons about creating web applications using the Rails framework.
- Applying basic AJAX in Rails to save on page reloads
####Models Used for this application
- User model - has_many :orders, has_many :products, has_many :comments
- Product model - _belongs_to :users, :orders, has_many :comments,
- Order model - has_many :products
- Comment model - includes comment and rating attributes