aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/demobank-ui-settings.js
blob: 827f207f8bf6685944c0e65a18dd27bca67518cd (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 demobank UI.
 */
globalThis.talerDemobankSettings = {
  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/"],
  ],
};