diff --git a/account-migration/src/test/resources/application-test.yml b/account-migration/src/test/resources/application-test.yml new file mode 100644 index 0000000..11e478a --- /dev/null +++ b/account-migration/src/test/resources/application-test.yml @@ -0,0 +1,36 @@ +spring: + datasource: + url: jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE + driver-class-name: org.h2.Driver + username: sa + password: + jpa: + hibernate: + ddl-auto: create-drop + show-sql: true + properties: + hibernate: + format_sql: true + data: + redis: + host: localhost + port: 6379 + +settlement: + cancellation: + min-reason-length: 10 + min-remaining-amount: 1000 + dispute: + window-days: 90 + response-deadline-days: 7 + chargeback-threshold: 100000 + max-inquiry-page-size: 50 + +payout: + min-amount: 1000 + max-daily-amount: 10000000 + max-daily-count: 5 + processing-hours: + start: 9 + end: 17 + fraud-threshold: 0.8