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
02 Sep 2021
heroku pg:psql -c "command" --app "name-app"