spring: application: name: vpd-permission-backoffice datasource: url: ${BACKOFFICE_DB_URL:jdbc:oracle:thin:@localhost:1521/FREEPDB1} username: ${BACKOFFICE_DB_USERNAME:backoffice} password: ${BACKOFFICE_DB_PASSWORD:backoffice} driver-class-name: oracle.jdbc.OracleDriver hikari: pool-name: vpd-backoffice-pool maximum-pool-size: ${BACKOFFICE_DB_POOL_MAX:10} minimum-idle: ${BACKOFFICE_DB_POOL_MIN:2} connection-timeout: 10000 idle-timeout: ${BACKOFFICE_DB_POOL_IDLE_TIMEOUT_MS:300000} keepalive-time: ${BACKOFFICE_DB_POOL_KEEPALIVE_MS:120000} thymeleaf: cache: false mybatis: mapper-locations: classpath:/mapper/*.xml configuration: map-underscore-to-camel-case: true server: port: ${BACKOFFICE_PORT:8080} backoffice: security: admin-user: ${BACKOFFICE_ADMIN_USER:admin} admin-password: ${BACKOFFICE_ADMIN_PASSWORD:admin} token: max-days: ${BACKOFFICE_TOKEN_MAX_DAYS:365} ords: base-url: ${BACKOFFICE_ORDS_BASE_URL:https://yh0olybn5pqce4n-d8aukro81636mon0.adb.ap-seoul-1.oraclecloudapps.com/ords} timeout: ${BACKOFFICE_ORDS_TIMEOUT_SECONDS:10}s metadata-db: url: ${BACKOFFICE_ORDS_DB_URL:} username: ${BACKOFFICE_ORDS_DB_USERNAME:} password: ${BACKOFFICE_ORDS_DB_PASSWORD:} ai: enabled: ${BACKOFFICE_AI_ENABLED:false} base-url: ${BACKOFFICE_AI_BASE_URL:} model: ${BACKOFFICE_AI_MODEL:} api-key: ${BACKOFFICE_AI_API_KEY:} timeout: ${BACKOFFICE_AI_TIMEOUT_SECONDS:30}s