29 lines
475 B
YAML
29 lines
475 B
YAML
spring:
|
|
r2dbc:
|
|
url: r2dbc:postgresql://localhost:55432/manage_system
|
|
username: novalon
|
|
password: novalon123
|
|
pool:
|
|
enabled: true
|
|
initial-size: 2
|
|
max-size: 10
|
|
|
|
flyway:
|
|
enabled: false
|
|
|
|
sql:
|
|
init:
|
|
mode: never
|
|
|
|
security:
|
|
enabled: false
|
|
|
|
jwt:
|
|
secret: test-secret-key-for-integration-testing
|
|
expiration: 86400000
|
|
|
|
logging:
|
|
level:
|
|
cn.novalon.manage: DEBUG
|
|
org.springframework.r2dbc: DEBUG
|