← Back to Login

Forgot Your Password?

To reset your password, set the APP_PASSWORD_HASH environment variable on your hosting platform. This overrides the stored password.

Steps

  1. Generate a new password hash (use the tool below or your terminal)
  2. Set it as APP_PASSWORD_HASH on your platform
  3. Restart the app (or wait for auto-redeploy)
  4. Log in with your new password
  5. Go to Settings → Security → Change Password (optional, saves to DB)
  6. Remove APP_PASSWORD_HASH from your env vars (optional)

Hash Generator

This runs entirely in your browser. Your password never leaves this page.

Platform Instructions

Railway
  1. Go to Railway dashboard → your service → Variables
  2. Add APP_PASSWORD_HASH with the hash value
  3. Railway restarts automatically
Docker / VPS / GCE
  1. SSH into your server
  2. Edit .env file, add APP_PASSWORD_HASH=<hash>
  3. Run docker compose up -d to restart