So first we will create rails project and setup device
create a rails application
rails new devise_example
now add devise to gem list
you can find a file named 'Gemfile' at the root of rails project
Then run bundle install
Next, you need to run the generator:
rails generate devise:insta...