application-test.yml 507 Bytes
spring:
  datasource:
    url: jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_SCHEMA}?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true
    username: ${DB_USER}
    password: ${DB_PASSWORD}
  flyway:
    enabled: true
    locations: filesystem:../sql/migrations

jwt:
  secret: ${JWT_SECRET:test-secret-please-replace-with-256bit-random-string-xxxxxxx}
  ttl-sec: 7200

logging:
  level:
    root: WARN
    com.xly.erp: DEBUG
    com.zaxxer.hikari: WARN