Skip to content

How to update your password

Evgenii Burmakin edited this page Jun 30, 2024 · 1 revision
  1. On your server, run docker exec -it CONTAINER_ID /bin/sh to enter dawarich app container sh
  2. Run bin/rails console to enter Rails console
  3. Execute user = User.find_by(email: "YOUR_EMAIL") replacing email with your own
  4. Execute user.update!(password: "NEW_PASSWORD", password_confirmation: "NEW_PASSWORD")
  5. Done!