aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJF <johannes.ferch@gmail.com>2025-03-27 09:40:44 +0100
committerGitHub <noreply@github.com>2025-03-27 08:40:44 +0000
commit41067eef01c987f6829e01eb21fd6fadc6bcb13a (patch)
tree151242687ca15acbaf4f05bdf5b9e195b7344f91 /docs
parentb3417d87a0565b3536029e3b1e347611b5c6679b (diff)
downloadkarakeep-41067eef01c987f6829e01eb21fd6fadc6bcb13a.tar.zst
docs: Fixed missing semicolon in update admin password section (#1169)
Command is not accepted within sqlite3 otherwise and slightly confusing
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/11-FAQ.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/docs/11-FAQ.md b/docs/docs/11-FAQ.md
index a5f5a53e..5a9a1098 100644
--- a/docs/docs/11-FAQ.md
+++ b/docs/docs/11-FAQ.md
@@ -28,7 +28,9 @@ To reset the password:
* Connect to the `db.db` database, which is located in the `data` directory you have mounted to your docker container:
* by e.g. running `sqlite3 db.db` (in your `data` directory)
* or going through e.g. the `dbeaver` UI to locate the file in the data directory and connecting to it
-* Update the password in the database by running `update user set password='$2a$10$5u40XUq/cD/TmLdCOyZ82ePENE6hpkbodJhsp7.e/BgZssUO5DDTa' where email='<YOUR_EMAIL_HERE>'` (don't forget to put your email address into the command)
+* Update the password in the database by running:
+ * `update user set password='$2a$10$5u40XUq/cD/TmLdCOyZ82ePENE6hpkbodJhsp7.e/BgZssUO5DDTa' where email='<YOUR_EMAIL_HERE>';`
+ * (don't forget to put your email address into the command)
* The new password for your user is now `adminadmin`.
* Start hoarder again
* Log in with your email address and the password `adminadmin` and change the password to whatever you want in the `User Settings`