mirror of
https://github.com/valitydev/daway.git
synced 2024-11-06 08:35:23 +00:00
NEW-38: add payout type
This commit is contained in:
parent
bb5317269a
commit
ed3fd1853a
12
docker-compose-dev.yml
Normal file
12
docker-compose-dev.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
postgresql:
|
||||||
|
image: postgres:9.6
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/postgresql
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: postgres
|
||||||
|
POSTGRES_PASSWORD: postgres
|
||||||
|
POSTGRES_DB: newway
|
@ -14,7 +14,12 @@ spring:
|
|||||||
maximum-pool-size: 10
|
maximum-pool-size: 10
|
||||||
flyway:
|
flyway:
|
||||||
schemas: nw
|
schemas: nw
|
||||||
|
management:
|
||||||
|
metrics:
|
||||||
|
export:
|
||||||
|
statsd:
|
||||||
|
flavor: etsy
|
||||||
|
enabled: false
|
||||||
retry-policy:
|
retry-policy:
|
||||||
maxAttempts: 10
|
maxAttempts: 10
|
||||||
bm:
|
bm:
|
||||||
@ -94,5 +99,3 @@ dmt:
|
|||||||
polling:
|
polling:
|
||||||
delay: 3000
|
delay: 3000
|
||||||
maxQuerySize: 10
|
maxQuerySize: 10
|
||||||
|
|
||||||
management.metrics.export.statsd.flavor: etsy
|
|
@ -0,0 +1 @@
|
|||||||
|
ALTER TYPE nw.payout_type ADD VALUE 'wallet';
|
Loading…
Reference in New Issue
Block a user