exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

test_exchange_api_keys_cherry_picking.conf (1526B)


      1 # This file is in the public domain.
      2 #
      3 [PATHS]
      4 # Persistent data storage for the testcase
      5 TALER_TEST_HOME = test_exchange_api_keys_cherry_picking_home/
      6 
      7 [auditor]
      8 BASE_URL = "http://localhost:8083/"
      9 PORT = 8083
     10 TINY_AMOUNT = EUR:0.01
     11 
     12 [taler-exchange-secmod-eddsa]
     13 OVERLAP_DURATION = 1 s
     14 DURATION = 30 s
     15 LOOKAHEAD_SIGN = 20 s
     16 
     17 [exchange]
     18 CURRENCY = EUR
     19 CURRENCY_ROUND_UNIT = EUR:0.01
     20 TINY_AMOUNT = EUR:0.01
     21 AML_THRESHOLD = EUR:1000000
     22 PORT = 8081
     23 MASTER_PUBLIC_KEY = 98NJW3CQHZQGQXTY3K85K531XKPAPAVV4Q5V8PYYRR00NJGZWNVG
     24 DB = postgres
     25 BASE_URL = "http://localhost:8081/"
     26 
     27 [exchangedb-postgres]
     28 CONFIG = "postgres:///talercheck"
     29 
     30 [auditordb-postgres]
     31 CONFIG = "postgres:///talercheck"
     32 
     33 [exchange-account-1]
     34 PAYTO_URI = "payto://x-taler-bank/localhost/42?receiver-name=42"
     35 ENABLE_DEBIT = YES
     36 ENABLE_CREDIT = YES
     37 
     38 [exchange-accountcredentials-1]
     39 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/42/taler-wire-gateway/"
     40 
     41 [admin-accountcredentials-1]
     42 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/42/taler-wire-gateway/"
     43 
     44 [exchange-account-2]
     45 PAYTO_URI = "payto://x-taler-bank/localhost/2?receiver-name=2"
     46 ENABLE_DEBIT = YES
     47 ENABLE_CREDIT = YES
     48 
     49 [exchange-accountcredentials-2]
     50 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/2/taler-wire-gateway/"
     51 WIRE_GATEWAY_AUTH_METHOD = basic
     52 USERNAME = Exchange
     53 PASSWORD = password
     54 
     55 [admin-accountcredentials-2]
     56 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/2/taler-wire-gateway/"
     57 WIRE_GATEWAY_AUTH_METHOD = basic
     58 USERNAME = Exchange
     59 PASSWORD = password
     60 
     61 [bank]
     62 HTTP_PORT=8082