-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yaml
98 lines (91 loc) · 2.26 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# jwt configuration
jwt:
# 密钥
signing-key: c2VjcmV0X1hZUkFMUlJGVEtIWUdDWkhFNDNfSkpCSFBFVFpIUVFZVVRLTE5CRkFEUg==
# token过期时间
expires-time: 3h
# 签发者
issuer: GGB
# zap logger configuration
zap:
# 日志等级(debug|info|warn|error|dpanic|panic|fatal)
level: info
# 输出形式(json-{"level":"error","time":"2024-06-24 09:56:09","msg":"222"} | console-2024-06-23 15:55:59 error 222)
format: console
# 日志前缀
prefix: "[github.com/wangyupo/GGB]"
# 日志存放路径
director: log
# 显示行号
show-line: true
# 显示栈名
stacktrace-key: stacktrace
# 控制台打印
log-in-console: true
# 大小限制(单位:M)
max-size: 50
# 备份数量
max-backups: 50
# 存放时间(单位:天)
max-age: 30
# 是否压缩
compress: false
# email configuration
email:
# SMTP 发送邮件服务器地址
host: smtp.qq.com
# SMTP 发送邮件服务器端口号
port: 587
# SMTP 帐户(你的QQ邮箱完整的地址)
username: xxx@qq.com
# SMTP 密码(生成的授权码)
password: xxx
# 发件人地址(你的QQ邮箱完整的地址,需要与 SMTP 帐户保持统一)
from: xxx@qq.com
# system configuration
system:
# 数据库类型
db-type: mysql
# 控制oss选择走本地还是七牛等其他仓,默认本地
oss-type: local
# 是否启用redis
use-redis: true
# 程序监听端口
addr: 5312
# url前缀
router-prefix: /api
# 语言环境(zh|en|uk|fr)
language: zh
# redis configuration
redis:
addr: 127.0.0.1:6379
password: ""
db: 0
# mysql connect configuration
mysql:
# 主机地址
host: "127.0.0.1"
# 端口
port: "3306"
# 数据库名
db-name: "gin_cli"
# 用户名
username: "root"
# 密码
password: ""
# 编码方式
charset: "utf8mb4"
# 字符集(utf8mb4_general_ci速度比utf8mb4_unicode_ci快些)
collation: utf8mb4_general_ci
# local configuration
local:
# 文件路径
path: uploads/file
# 文件储存路径
store-path: uploads/file
# excel configuration
excel:
# Excel模板存放路径(通常用于通过Excel模板导入数据)
template-dir: resource/excel/template/
# Excel输出路径(导出Excel时,Excel文件的临时存放目录)
output-dir: resource/excel/output/