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

/**
 * Global settings for the demobank UI.
 */
localStorage.setItem("bank-base-url", "http://bank.taler.test/");

globalThis.talerDemobankSettings = {
  backendBaseURL: "http://bank.taler.test/",
  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/"],
  ],
};