03 Jan 2023
Start the Rails server
rails s
Creates a table and pages to create new entires
rails g scaffold Note title:string description:text rails db:migrate
Does not create a model or CRUD operations.
rails g controller Person index