You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
3.0 KiB

  1. # Gin-Vue-Admin Global Configuration
  2. # jwt configuration
  3. jwt:
  4. signing-key: 'qmPlus'
  5. expires-time: 604800
  6. buffer-time: 86400
  7. # zap logger configuration
  8. zap:
  9. level: 'info'
  10. format: 'console'
  11. prefix: '[GIN-VUE-ADMIN]'
  12. director: 'log'
  13. link-name: 'latest_log'
  14. show-line: true
  15. encode-level: 'LowercaseColorLevelEncoder'
  16. stacktrace-key: 'stacktrace'
  17. log-in-console: true
  18. # redis configuration
  19. redis:
  20. db: 0
  21. addr: '127.0.0.1:6379'
  22. password: ''
  23. # email configuration
  24. email:
  25. to: 'xxx@qq.com'
  26. port: 465
  27. from: 'xxx@163.com'
  28. host: 'smtp.163.com'
  29. is-ssl: true
  30. secret: 'xxx'
  31. nickname: 'test'
  32. # casbin configuration
  33. casbin:
  34. model-path: './resource/rbac_model.conf'
  35. # system configuration
  36. system:
  37. env: 'public' # Change to "develop" to skip authentication for development mode
  38. addr: 8888
  39. db-type: 'mysql'
  40. oss-type: 'local' # 控制oss选择走本期还是 七牛等其他仓 自行增加其他oss仓可以在 server/utils/upload/upload.go 中 NewOss函数配置
  41. use-multipoint: false
  42. # captcha configuration
  43. captcha:
  44. key-long: 6
  45. img-width: 240
  46. img-height: 80
  47. # mysql connect configuration
  48. # 未初始化之前请勿手动修改数据库信息!!!如果一定要手动初始化请看(https://www.gin-vue-admin.com/docs/first)
  49. mysql:
  50. path: ''
  51. config: ''
  52. db-name: ''
  53. username: ''
  54. password: ''
  55. max-idle-conns: 10
  56. max-open-conns: 100
  57. log-mode: false
  58. log-zap: ""
  59. # local configuration
  60. local:
  61. path: 'uploads/file'
  62. # autocode configuration
  63. autocode:
  64. transfer-restart: true
  65. root: ""
  66. server: /server
  67. server-api: /api/v1
  68. server-initialize: /initialize
  69. server-model: /model
  70. server-request: /model/request/
  71. server-router: /router
  72. server-service: /service
  73. web: /web/src
  74. web-api: /api
  75. web-flow: /view
  76. web-form: /view
  77. web-table: /view
  78. # qiniu configuration (请自行七牛申请对应的 公钥 私钥 bucket 和 域名地址)
  79. qiniu:
  80. zone: 'ZoneHuaDong'
  81. bucket: ''
  82. img-path: ''
  83. use-https: false
  84. access-key: ''
  85. secret-key: ''
  86. use-cdn-domains: false
  87. # aliyun oss configuration
  88. aliyun-oss:
  89. endpoint: 'yourEndpoint'
  90. access-key-id: 'yourAccessKeyId'
  91. access-key-secret: 'yourAccessKeySecret'
  92. bucket-name: 'yourBucketName'
  93. bucket-url: 'yourBucketUrl'
  94. # tencent cos configuration
  95. tencent-cos:
  96. bucket: 'xxxxx-10005608'
  97. region: 'ap-shanghai'
  98. secret-id: 'xxxxxxxx'
  99. secret-key: 'xxxxxxxx'
  100. base-url: 'https://gin.vue.admin'
  101. path-prefix: 'gin-vue-admin'
  102. # excel configuration
  103. excel:
  104. dir: './resource/excel/'
  105. # timer task db clear table
  106. Timer:
  107. start: true
  108. spec: "@daily" # 定时任务详细配置参考 https://pkg.go.dev/github.com/robfig/cron/v3
  109. detail: [
  110. # tableName: 需要清理的表名
  111. # compareField: 需要比较时间的字段
  112. # interval: 时间间隔, 具体配置详看 time.ParseDuration() 中字符串表示 且不能为负数
  113. # 2160h = 24 * 30 * 3 -> 三个月
  114. { tableName: "sys_operation_records" , compareField: "created_at", interval: "2160h" },
  115. #{ tableName: "log2" , compareField: "created_at", interval: "2160h" }
  116. ]