diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/taler-nexus-prepare | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/taler-nexus-prepare b/contrib/taler-nexus-prepare index 23dbf6d76..d7466fcfe 100755 --- a/contrib/taler-nexus-prepare +++ b/contrib/taler-nexus-prepare @@ -36,8 +36,14 @@ def assertResponse(response): return response # Create a nexus (super-) user -call(["nexus", "superuser", "Exchange", "--password", "x"]) -# Create a loopback bank connection. +call(["nexus", + "superuser", + "--db-name", "/tmp/nexus-exchange-test.sqlite3", + "Exchange", + "--password", "x"] +) + +# Create a EBICS bank connection. assertResponse( post( "http://localhost:5001/bank-connections", |