server: port: 8080 spring: application: name: qqflowengine-backend datasource: url: jdbc:h2:file:./data/devdb;MODE=MySQL;AUTO_SERVER=TRUE;DB_CLOSE_ON_EXIT=FALSE;CHARSET=UTF-8 driver-class-name: org.h2.Driver username: sa password: sql: init: mode: always schema-locations: classpath:schema-dev.sql data-locations: classpath:data-dev.sql redis: host: localhost port: 6379 password: database: 0 timeout: 10s lettuce: pool: max-active: 8 max-idle: 8 min-idle: 0 jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8 mybatis-plus: mapper-locations: classpath*:/mapper/**/*.xml type-aliases-package: com.qqflow.engine.**.po configuration: map-underscore-to-camel-case: true cache-enabled: true log-impl: org.apache.ibatis.logging.stdout.StdOutImpl global-config: db-config: id-type: auto logic-delete-field: deleted logic-delete-value: 1 logic-not-delete-value: 0 jwt: secret: qqflow-engine-secret-key-2024-very-long-and-secure expiration: 86400000 header: Authorization prefix: Bearer logging: level: com.qqflow.engine: debug