taler-deployment

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

commit a7d0b30ece8492ed2cf6888df23d1abe9bdb584c
parent 95c562100eaa27dd450886384d9823b87042e57f
Author: MS <ms@taler.net>
Date:   Thu, 23 Jul 2020 18:30:24 +0200

donations instances

Diffstat:
Mbin/taler-config-instances | 57+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+), 0 deletions(-)

diff --git a/bin/taler-config-instances b/bin/taler-config-instances @@ -76,6 +76,48 @@ pos_config = dict( default_pay_delay=dict(d_ms="forever") ) +print("configuring GNUnet") +gnunet_config = dict( + payto_uris=["payto://x-taler-bank/"], + id="GNUnet", + name="GNUnet", + address=dict(), + jurisdiction=dict(), + default_max_wire_fee="EUR:1", + default_wire_fee_amortization=3, + default_max_deposit_fee="EUR:1", + default_wire_transfer_delay=dict(d_ms="forever"), + default_pay_delay=dict(d_ms="forever") +) + +print("configuring Taler") +taler_config = dict( + payto_uris=["payto://x-taler-bank/"], + id="Taler", + name="Taler", + address=dict(), + jurisdiction=dict(), + default_max_wire_fee="EUR:1", + default_wire_fee_amortization=3, + default_max_deposit_fee="EUR:1", + default_wire_transfer_delay=dict(d_ms="forever"), + default_pay_delay=dict(d_ms="forever") +) + +print("configuring Tor") +tor_config = dict( + payto_uris=["payto://x-taler-bank/"], + id="Tor", + name="Tor", + address=dict(), + jurisdiction=dict(), + default_max_wire_fee="EUR:1", + default_wire_fee_amortization=3, + default_max_deposit_fee="EUR:1", + default_wire_transfer_delay=dict(d_ms="forever"), + default_pay_delay=dict(d_ms="forever") +) + expectResponse( post(INSTANCE_CONFIG_URL, json=blog_config, headers={"Authorization": "ApiKey sandbox"}), [204, 409] @@ -95,3 +137,18 @@ expectResponse( post(INSTANCE_CONFIG_URL, json=pos_config, headers={"Authorization": "ApiKey sandbox"}), [204, 409] ) + +expectResponse( + post(INSTANCE_CONFIG_URL, json=taler_config, headers={"Authorization": "ApiKey sandbox"}), + [204, 409] +) + +expectResponse( + post(INSTANCE_CONFIG_URL, json=gnunet_config, headers={"Authorization": "ApiKey sandbox"}), + [204, 409] +) + +expectResponse( + post(INSTANCE_CONFIG_URL, json=tor_config, headers={"Authorization": "ApiKey sandbox"}), + [204, 409] +)