summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2021-01-20 21:38:30 -0500
committerThien-Thi Nguyen <ttn@gnuvola.org>2021-01-26 20:11:01 -0500
commit507c586281f427afd61913cd2f9a4e8e44e2fe0f (patch)
tree1dc53ea068bc9cfe5c7d37625c5e9a0b76e55946
parent11a2d529134034a7f7e5d5a9b42da8bc59c419ed (diff)
downloaddocs-507c586281f427afd61913cd2f9a4e8e44e2fe0f.tar.gz
docs-507c586281f427afd61913cd2f9a4e8e44e2fe0f.tar.bz2
docs-507c586281f427afd61913cd2f9a4e8e44e2fe0f.zip
add backslash+LF to ‘code-block console’ commands (three instances)
-rw-r--r--libeufin/nexus-tutorial.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/libeufin/nexus-tutorial.rst b/libeufin/nexus-tutorial.rst
index cedee094..9c6316db 100644
--- 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.