You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
683 B

  1. # -*- ispell-local-dictionary: "english" -*-
  2. * Usage
  3. ** How to manage users
  4. This allows to reset password for users.
  5. From container (using `docker exec -ti MY_CONTAINER sh`), use
  6. `/hedgedoc/bin/manage_users` command (it is not in $PATH).
  7. #+begin_example
  8. Command-line utility to create users for email-signin.
  9. Usage: bin/manage_users [--pass password] (--add | --del) user-email
  10. Options:
  11. --add Add user with the specified user-email
  12. --del Delete user with specified user-email
  13. --reset Reset user password with specified user-email
  14. --pass Use password from cmdline rather than prompting
  15. #+end_example