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

Popular posts from this blog

Rails 7 Features :: Comparison with Rails 6 and Rails 5