Ruby on Rails Notes

My personal notes about Ruby on Rails.

MVC Architecture

  • Model: Database interactions
  • View: HTML/ERB templates
  • Controller: Request handling

Helpful Commands

# Generate a new model
rails generate model User name:string email:string

# Run migrations
rails db:migrate

# Start server
rails server

Resources


This site uses Just the Docs, a documentation theme for Jekyll.