diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2021-02-12 07:35:54 -0500 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2021-02-12 07:35:54 -0500 |
commit | d4355f04765d06dde1de0726463d4861ede3da3a (patch) | |
tree | a3e703756ca97385f3e48710e81d5d936802d83d | |
parent | 44078090dd3a746d3591a4e3765d14f5fd87e154 (diff) | |
download | docs-d4355f04765d06dde1de0726463d4861ede3da3a.tar.gz docs-d4355f04765d06dde1de0726463d4861ede3da3a.tar.bz2 docs-d4355f04765d06dde1de0726463d4861ede3da3a.zip |
mention behavior when db-conn-str env vars are not set (two instances)
-rw-r--r-- | libeufin/nexus-tutorial.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libeufin/nexus-tutorial.rst b/libeufin/nexus-tutorial.rst index c952a24..6b6eff6 100644 --- a/libeufin/nexus-tutorial.rst +++ b/libeufin/nexus-tutorial.rst @@ -143,6 +143,8 @@ core banking system with EBICS access to bank accounts. The sandbox relies on a database, which you must specify using a JDBC connection URI with the ``LIBEUFIN_SANDBOX_DB_CONNECTION`` environment variable, before invoking any commands. +(If this variable is not set, ``libeufin-sandbox`` complains and exits.) + Only *SQLite* (e.g. ``jdbc:sqlite:/tmp/libeufintestdb``) and *PostgreSQL (via TCP)* (e.g. ``jdbc:postgresql://localhost:$port/libeufintestdb?user=$username&password=$password``) are supported right now. @@ -238,6 +240,8 @@ Connect Nexus with an EBICS account Nexus relies on a database, which you must specify using a JDBC connection URI with the ``LIBEUFIN_NEXUS_DB_CONNECTION`` environment variable, before invoking any commands. +(If this variable is not set, ``libeufin-nexus`` complains and exits.) + Only *SQLite* (e.g. ``jdbc:sqlite:/tmp/libeufintestdb``) and *PostgreSQL (via TCP)* (e.g. ``jdbc:postgresql://localhost:$port/libeufintestdb?user=$username&password=$password``) are supported right now. |