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
If you run the following in the rails console it should do the trick:
User.find_by(email: 'user_email_address').reset_password!('new_password','new_password')
http://www.rubydoc.info/github/plataformatec/devise/Devise/Models/Recoverable