dc53a233b9
重构项目结构,将分散在各模块的领域模型统一移动到manage-common模块 更新相关依赖和引用路径 调整docker-compose配置和测试标记 添加新的Playwright测试配置 优化Dockerfile构建过程
39 lines
810 B
YAML
39 lines
810 B
YAML
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
|