taler-deployment

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

commit 1e6c56612cf75c8849e215b8401a631f2ac605c0
parent 1a300de277f40e9572a3fcad2e209b1e3ff96c8a
Author: MS <ms@taler.net>
Date:   Thu, 24 Nov 2022 19:40:06 +0100

config

Diffstat:
Mdocker/demo/config/deployment-per-service.ts | 7+------
1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/docker/demo/config/deployment-per-service.ts b/docker/demo/config/deployment-per-service.ts @@ -18,14 +18,13 @@ interface NexusAccount { password: string; } - // Values (potentially) needed by more than one container. interface GlobalConfig { currency: string; dbPassword: string; exchangeBaseUrl: URL; // used by merchant and exchange. exchangeNexusAccount: NexusAccount; // used by libeufin and exchange. - bankAccounts: [BankAccount]; + bankAccounts: [BankAccount]; // Only used in libeufin. } interface BankConfig { @@ -40,10 +39,6 @@ interface BankWebUi { backendUrl: URL; } -interface ExchangeConfig { - bankAccount: BankAccount; -} - interface MerchantConfig { baseUrl: URL; instances: [InstanceConfig];