spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://101.200.154.78:3306/yunda_qa?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai username: root password: mysql_Jt3yzh # Mail configuration mail: host: smtp.gmail.com port: 587 username: your-email@gmail.com password: your-app-password properties: mail: smtp: auth: true starttls: enable: true # MyBatis-Flex configuration mybatis-flex: # Enable SQL logging configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # Mapper XML location (optional) mapper-locations: classpath*:mapper/*.xml # JWT configuration jwt: secret: mySecretKeyForJWTTokenGenerationAndValidation expiration: 86400000 # 24 hours in milliseconds # App configuration app: reset-password-url: http://localhost:3000/reset-password # Server configuration server: port: 8080 # Logging configuration logging: level: com.yundage.chat: debug com.mybatisflex: debug