While running an app how do you select a user by email address and then set the password manually within rails console for Devise?
rails console
Also, where would I go to
You can simply update password field, no need for confirmation password, devise will save it in encrypted form
u = User.find_by_email('user@example.com') u.update_attribute(:password, '123123')