settings.json (1245B)
1 // This file is an example of configuration of Bank SPA 2 // Remove all the comments to make the file a valid 3 // JSON file, otherwise no value here will make any 4 // effect. 5 // All the settings are optionals. 6 { 7 // Where libeufin backend is localted 8 // default: window.origin without "webui/" 9 "backendBaseURL": "http://bank.taler.test:1180/", 10 // Shows a button "create random account" in the registration form 11 // Useful for testing 12 // default: false 13 "allowRandomAccountCreation": false, 14 // Create all random accounts with password "123" 15 // Useful for testing 16 // default: false 17 "simplePasswordForRandomAccounts": false, 18 // Bank name shown in the header 19 // default: "Taler Bank" 20 "bankName": "Taler TESTING Bank", 21 // URL where the user is going to be redirected after 22 // clicking in Taler Logo 23 // default: home page 24 "iconLinkURL": "#", 25 // Mapping for every link shown in the top navitation bar 26 // - key: link label, what the user will read 27 // - value: link target, where the user is going to be redirected 28 // default: empty list 29 "topNavSites": { 30 "Exchange": "http://exchange.taler.test:1180/", 31 "Bank": "http://bank-ui.taler.test:1180/", 32 "Merchant": "http://merchant.taler.test:1180/" 33 } 34 }