devise :: with links of if and else
gem'devise'
bundle
rails g devise:install
config.action_mailer.default_url_options: {host:'localhost',port:3000}
rails g devise user
rails db:migrate
before_action :authenticate_user!
rails g controller home index
root to: 'home#index'
Comments
Post a Comment