taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 91e69fe77baa2abba309f70512898b72e3609670
parent e3a3f7dfb9b5e898420e70e6b04e717130184189
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 21 Sep 2018 11:30:47 +0200

Setting bank customers debit limit as -20 KUDOS.

Diffstat:
Mconfig/generate-config | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/generate-config b/config/generate-config @@ -53,7 +53,7 @@ def config(currency, envname, exchange_pub, standalone): cfg_put("bank", "uwsgi_unixpath", "$HOME/sockets/bank.uwsgi") cfg_put("bank", "uwsgi_unixpath_mode", "660") cfg_put("bank", "database", "taler"+envname) - cfg_put("bank", "max_debt", "%s:0.0" % currency) + cfg_put("bank", "max_debt", "%s:20.0" % currency) cfg_put("bank", "max_debt_bank", "%s:0.0" % currency) if standalone: cfg_put("bank", "database", "postgres:///taler?host={}/sockets".format(os.getenv("HOME")))