From 599cc8ed90a72f8d5a94381780aff07b8551da6b Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Wed, 22 Feb 2023 17:13:25 -0500 Subject: [PATCH] Update initial deployment procedure --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3e40022..659cbb1 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,15 @@ Note: the image is quite large since mnemosyne (by default) requires much of Qt5 Usage: * Start with `podman-compose up` - * Generate a password, eg. `echo 'password' | argon2 saltsalt -e` * Once started, add the following to the config.py file in the data volume: ``` remote_access_username = "user" -remote_access_password = "passwordhash" -remote_access_password_algo = "argon2" +remote_access_password = "password" +remote_access_password_algo = "" +run_sync_server = True ``` - * Restart the container + * Restart the container twice. On the first run, it seems to create the config.db + with empty values only. On the second run, the values are properly set in the db + and upgraded to being hashed using argon2id. + * The lines matching "remote_access_*" may be removed from config.py and the container + restart for a final time.