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 (1481B)


      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 
     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 AML_THRESHOLD = EUR:1000000
     21 PORT = 8081
     22 MASTER_PUBLIC_KEY = 98NJW3CQHZQGQXTY3K85K531XKPAPAVV4Q5V8PYYRR00NJGZWNVG
     23 DB = postgres
     24 BASE_URL = "http://localhost:8081/"
     25 
     26 [exchangedb-postgres]
     27 CONFIG = "postgres:///talercheck"
     28 
     29 [auditordb-postgres]
     30 CONFIG = "postgres:///talercheck"
     31 
     32 [exchange-account-1]
     33 PAYTO_URI = "payto://x-taler-bank/localhost/42?receiver-name=42"
     34 ENABLE_DEBIT = YES
     35 ENABLE_CREDIT = YES
     36 
     37 [exchange-accountcredentials-1]
     38 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/42/taler-wire-gateway/"
     39 
     40 [admin-accountcredentials-1]
     41 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/42/taler-wire-gateway/"
     42 
     43 [exchange-account-2]
     44 PAYTO_URI = "payto://x-taler-bank/localhost/2?receiver-name=2"
     45 ENABLE_DEBIT = YES
     46 ENABLE_CREDIT = YES
     47 
     48 [exchange-accountcredentials-2]
     49 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/2/taler-wire-gateway/"
     50 WIRE_GATEWAY_AUTH_METHOD = basic
     51 USERNAME = Exchange
     52 PASSWORD = password
     53 
     54 [admin-accountcredentials-2]
     55 WIRE_GATEWAY_URL = "http://localhost:9082/accounts/2/taler-wire-gateway/"
     56 WIRE_GATEWAY_AUTH_METHOD = basic
     57 USERNAME = Exchange
     58 PASSWORD = password
     59 
     60 [bank]
     61 HTTP_PORT=8082