From f040ad899d1bfb9affe9af5296af6c69f2178924 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Tue, 3 May 2022 12:06:08 +0200 Subject: [PATCH] [documentation] put single-quotes around passwords in install docs (#534) --- docs/installation_guide/binary.md | 2 +- docs/installation_guide/docker.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation_guide/binary.md b/docs/installation_guide/binary.md index 5dc92a834..f8a38a01d 100644 --- a/docs/installation_guide/binary.md +++ b/docs/installation_guide/binary.md @@ -79,7 +79,7 @@ You can use the GoToSocial binary to also create, confirm, and promote your user Run the following command to create a new account: ```bash -./gotosocial --config-path ./config.yaml admin account create --username some_username --email some_email@whatever.org --password SOME_PASSWORD +./gotosocial --config-path ./config.yaml admin account create --username some_username --email some_email@whatever.org --password 'SOME_PASSWORD' ``` In the above command, replace `some_username` with your desired username, `some_email@whatever.org` with the email address you want to associate with your account, and `SOME_PASSWORD` with a secure password. diff --git a/docs/installation_guide/docker.md b/docs/installation_guide/docker.md index 8342f7893..cea3947c1 100644 --- a/docs/installation_guide/docker.md +++ b/docs/installation_guide/docker.md @@ -123,7 +123,7 @@ Now that GoToSocial is running, you can execute commands inside the running cont First create a user (replace the username, email, and password with appropriate values): ```bash -docker exec -it gotosocial /gotosocial/gotosocial admin account create --username some_username --email someone@example.org --password some_very_good_password +docker exec -it gotosocial /gotosocial/gotosocial admin account create --username some_username --email someone@example.org --password 'some_very_good_password' ``` Now confirm the user, replacing username with the value you used in the command above.