test-public.yml (2715B)
1 --- 2 # Public variables for a "test" deployment 3 # Main domain name. 4 domain_name: "topstest.fdold.eu" 5 exchange_domain: "exchange.{{ domain_name }}" 6 # Use nightly Taler distro (true/false). 7 USE_NIGHTLY: true 8 # Deploy EBICS configuration (true/false). 9 use_ebics: false 10 # Our currency. 11 CURRENCY: CHF 12 # Smallest unit of the currency for wire transfers. 13 CURRENCY_ROUND_UNIT: "CHF:0.01" 14 # Base URL of the exchange REST API 15 EXCHANGE_BASE_URL: "https://exchange.{{ domain_name }}/" 16 # Base URL of the auditor REST API 17 AUDITOR_BASE_URL: "https://auditor.{{ domain_name }}/" 18 # Exchange offline master public key. 19 EXCHANGE_MASTER_PUB: GT1ZRF6DT4RAETDEGW3KTWRH15RAKH9T0TK6ZJEYFGRX18B54AK0 20 # Auditor offline public key. 21 AUDITOR_PUB: P6B7ZS7Y1Y12S0VP0PAJ1GQGSHW8RE4NSBTP8PR254J18SK24MH0 22 # URL with merchants accepting this exchange. 23 EXCHANGE_SHOPPING_URL: "https://shops.taler-ops.ch/" 24 # Name of Terms of service resource file 25 EXCHANGE_TERMS_ETAG: "exchange-tos-v0" 26 # Name of Privacy policy resource file 27 EXCHANGE_PP_ETAG: "exchange-pp-v0" 28 # Full BIC of exchange account 29 EXCHANGE_BANK_ACCOUNT_BIC: "MAEBCHZZ" 30 # Full Payto URI of exchange account (for credit and debit) 31 EXCHANGE_BANK_ACCOUNT_IBAN: "CH6808573105529100001" 32 # Full Payto URI of exchange account (for credit and debit) 33 EXCHANGE_BANK_ACCOUNT_PAYTO: "payto://iban/{{ EXCHANGE_BANK_ACCOUNT_IBAN }}?receiver-name=Taler+Operations+AG" 34 # Port to be used by libeufin-nexus for the taler-exchange-wire-gateway 35 LIBEUFIN_PORT: 8082 36 # Name of the exchange account at libeufin-nexus 37 LIBEUFIN_EXCHANGE_ACCOUNT: "exchange" 38 # Name of the bank dialect 39 LIBEUFIN_NEXUS_BANK_DIALECT: "maerki_baumann" 40 # SPA dialect (tops, gls, magnet, ...) 41 EXCHANGE_SPA_DIALECT: "tops" 42 # Business name of the exchange operator 43 EXCHANGE_OPERATOR_LEGAL_NAME: "Taler Operations AG" 44 # Where to send people after they passed KYC. 45 KYC_THANK_YOU_URL: https://taler-ops.ch/thank-you-kyc 46 # Template to use for identification of individuals with KYCAID 47 KYCAID_TEMPLATE_INDIVIDUAL: tmpl_xxx 48 # Template to use for identification of businesses with KYCAID 49 KYCAID_TEMPLATE_BUSINESS: tmpl_xxx 50 # Regex specifying allowed phone numbers for the SMS check 51 EXCHANGE_AML_PROGRAM_TOPS_SMS_HINT: "Swiss number required" 52 EXCHANGE_AML_PROGRAM_TOPS_SMS_EXAMPLE: "+41948224521" 53 EXCHANGE_AML_PROGRAM_TOPS_SMS_REGEX: "\\\\+41[0-9]+" 54 # Regex specifying allowed country names for the postal address check 55 EXCHANGE_AML_PROGRAM_TOPS_POSTAL_COUNTRY_HINT: "Swiss address required" 56 EXCHANGE_AML_PROGRAM_TOPS_POSTAL_EXAMPLE: "Max Mustermann\\nBahnhofsplatz 1\\n4201 Biel/Bienne" 57 EXCHANGE_AML_PROGRAM_TOPS_POSTAL_COUNTRY_REGEX: "CH|Ch|ch" 58 # Tool to use for sanction list checking 59 EXCHANGE_SANCTION_HELPER: taler-exchange-helper-sanctions-dummy