23 lines
354 B
YAML
23 lines
354 B
YAML
server:
|
|
port: 8000
|
|
|
|
log:
|
|
# const (
|
|
# LevelDebug Level = -4
|
|
# LevelInfo Level = 0
|
|
# LevelWarn Level = 4
|
|
# LevelError Level = 8
|
|
# )
|
|
path: log/app.log
|
|
level: -4
|
|
|
|
db:
|
|
mongoUri: mongodb://localhost:27017
|
|
dbName: taotie
|
|
|
|
jwt:
|
|
# 签名字符串
|
|
signString: taotie-api-q2e
|
|
# 过期时间,单位秒
|
|
timeOut: 3600
|