03 Jan 2023

Ruby on Rails Cheat Sheet

Basic Commands

Start the Rails server

rails s

Scaffolding

Creates a table and pages to create new entires

rails g scaffold Note title:string description:text
rails db:migrate

Simple Page

Does not create a model or CRUD operations.

rails g controller Person index