server: port: 8084 spring: application: name: manage-app r2dbc: url: r2dbc:postgresql://${DB_HOST:localhost}:${DB_PORT:5432}/${DB_NAME:novalon_manage} username: ${DB_USERNAME:postgres} password: ${DB_PASSWORD:postgres} pool: initial-size: 10 max-size: 50 max-idle-time: 30m max-life-time: 1h acquire-timeout: 5s flyway: enabled: true locations: classpath:db/migration management: endpoints: web: exposure: include: health,info,metrics,env,loggers base-path: /actuator endpoint: health: show-details: always metrics: tags: application: ${spring.application.name} environment: ${spring.profiles.active} logging: level: cn.novalon.manage: DEBUG org.springframework.r2dbc: DEBUG