# Terminal
rails new testapp
# create new app with MySQL instead of SQLite
rails new testapp -d mysql
# Terminal
# Generating a new controller and action
rails generate controller visitors index
# Generating a new scaffold (controller, view, and model)
rails g scaffold user first_name:string last_name
# config/routes.rb
Rails.application.routes.draw do
resources :users
get 'visitors/index'
root to: 'visitors#index'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end