commit ed40031a8e69b691cce08610dd13e07df59cd1b1
parent 26b7d4b16188891164aefddbe74dd23bdf53a005
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 28 Jul 2023 21:06:07 +0200
more jdbc: fixes
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/testing/test_prepare.sh b/src/testing/test_prepare.sh
@@ -170,8 +170,8 @@ then
IBAN_CREDIT=`anastasis-config -c $CONF_4 -s authorization-iban -o CREDIT_IBAN`
CREDIT_BUSINESS_NAME=`anastasis-config -c $CONF_4 -s authorization-iban -o BUSINESS_NAME`
echo -n "Setting up Nexus ..."
- export LIBEUFIN_NEXUS_DB_CONNECTION="jdbc:sqlite:$(mktemp -u /tmp/nexus-db-XXXXXX.sqlite)"
- export LIBEUFIN_SANDBOX_DB_CONNECTION="jdbc:sqlite:$(mktemp -u /tmp/sandbox-db-XXXXXX.sqlite)"
+ export LIBEUFIN_NEXUS_DB_CONNECTION="postgres:///anastasischeck"
+ export LIBEUFIN_SANDBOX_DB_CONNECTION="postgres:///anastasischeck"
export NEXUS_URL="http://localhost:5001/"
export SANDBOX_URL="http://localhost:5000/"
libeufin-nexus serve &> nexus.log &