spring:
  application:
    name: admin-application
  cloud:
    sentinel:
      transport:
        port: 8719
        dashboard: localhost:12088
      metric:
        charset: UTF-8
      eager: false

# server
server:
  port: 18083
  servlet:
    context-path: /admin-api/

admins:
  security:
    ignore_urls: /admin-api/admins/passport/login, /admin-api/admins/file/get_qiniu_token

# qiniu
qiniu:
  access-key: YldfyUC7OewoWM63TPYTairqnq8GMJvNek9EGoID
  secret-key: zZ7Q8wwZRyaklVvkyLmVydA4WygOBqtc_gTYzalS
  bucket: onemall

swagger:
  enable: true # 暂时不去掉
  title: 管理员子系统
  description: 管理员子系统
  version: 1.0.0
  base-package: cn.iocoder.mall.admin.application.controller

management:
  endpoints:
    web:
      exposure:
        include: health,info,env,metrics,prometheus
    metrics:
      enabled: true