taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 507c586281f427afd61913cd2f9a4e8e44e2fe0f
parent 11a2d529134034a7f7e5d5a9b42da8bc59c419ed
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Wed, 20 Jan 2021 21:38:30 -0500

add backslash+LF to ‘code-block console’ commands (three instances)

Diffstat:
Mlibeufin/nexus-tutorial.rst | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/libeufin/nexus-tutorial.rst b/libeufin/nexus-tutorial.rst @@ -213,13 +213,16 @@ For example: .. code-block:: console - $ libeufin-nexus serve --db-conn-string=jdbc:postgresql://127.0.0.1:5433/libeufindb?user=foo&password=secret + $ libeufin-nexus serve \ + --db-conn-string=jdbc:postgresql://127.0.0.1:5433/libeufindb?user=foo&password=secret At this point a superuser account needs to be created: .. code-block:: console - $ libeufin-nexus superuser --db-conn-string=jdbc:postgresql://127.0.0.1:5433/libeufindb?user=foo&password=secret foo # Will interactively ask for password + $ libeufin-nexus superuser \ + --db-conn-string=jdbc:postgresql://127.0.0.1:5433/libeufindb?user=foo&password=secret \ + foo # Will interactively ask for password For simplicity, a superuser can as well act as a normal user, but an API to create less privileged users is offered.