commit 3b95ea311a67543a2531d87e0ea712231ce1bc6e
parent 9f5044a98a736ca401959f4871d3f476c3d1e915
Author: Antoine A <>
Date: Mon, 27 Nov 2023 09:02:06 +0000
Update conf
Diffstat:
2 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/bank/src/main/kotlin/tech/libeufin/bank/Main.kt b/bank/src/main/kotlin/tech/libeufin/bank/Main.kt
@@ -386,6 +386,7 @@ class ChangePw : CliktCommand("Change account password", name = "passwd") {
}
}
+// TODO remove ?
class BankConfigDump : CliktCommand("Dump the configuration", name = "dump") {
private val configFile by option(
"--config", "-c",
diff --git a/contrib/libeufin-bank.conf b/contrib/libeufin-bank.conf
@@ -14,6 +14,12 @@ DEFAULT_ADMIN_DEBT_LIMIT = KUDOS:2000
# Value of the registration bonus for new users.
REGISTRATION_BONUS = KUDOS:100
+# Restrict account registration to admin.
+RESTRICT_REGISTRATION = false
+
+# Restrict account deletion to admin.
+RESTRICT_ACCOUNT_DELETION = false
+
# Exchange that is suggested to wallets when withdrawing.
SUGGESTED_WITHDRAWAL_EXCHANGE = https://exchange.demo.taler.net/
@@ -31,6 +37,14 @@ PORT = 8080
# Path to spa files
spa = $DATADIR/spa/
+# Enable regional currency conversion
+ALLOW_CONVERSION = false
+
+# Path to the script TAN challenge transmission via sms
+TAN_SMS =
+
+# Path to the script TAN challenge transmission via email
+TAN_EMAIL =
[libeufin-bankdb-postgres]
# Where are the SQL files to setup our tables?