How to update your password - Freika/dawarich GitHub Wiki
- On your server, run
docker exec -it CONTAINER_ID /bin/sh
to enter dawarich app container sh - Run
bin/rails
console to enter Rails console - Execute
user = User.find_by(email: "YOUR_EMAIL")
replacing email with your own - Execute
user.update!(password: "NEW_PASSWORD", password_confirmation: "NEW_PASSWORD")
- Done!