Skip to main content

Reset password

Users can reset their password through the terminal of the Plane application. You need to login to the backend Docker container and run the command below to reset a user's password.

  1. Get the container ID for plane-api:
    docker ps
  2. Log in to the container:
    docker exec -it <container_id> /bin/sh
  3. Run the reset password command:
    python manage.py reset_password <email>
    tip

    The email must belong to an existing user on the Plane application. If the email is not attached to any user, the command will throw an error.