aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/bank-ui-settings.js
blob: 397fa28c02c2c17b51116ff32b99d7d568181d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Values for development environment

/**
 * Global settings for the bank UI.
 */
globalThis.talerBankSettings = {
  backendBaseURL: "http://bank.taler.test:1180/",
  allowRegistrations: true,
  showDemoNav: true,
  simplePasswordForRandomAccounts: true,
  allowRandomAccountCreation: true,
  bankName: "Taler DEVELOPMENT Bank",
  // Names and links for other demo sites to show in the navbar
  demoSites: [
    ["Exchange", "https://Exchnage.taler.test/"],
    ["Bank", "https://bank-ui.taler.test/"],
    ["Merchant", "https://merchant.taler.test/"],
  ],
};