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 your account is locked from too many login attempts, you may also need to do:
user.locked_at = '' user.failed_attempts = '0' user.save!