mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 18:20:50 +00:00
The sample had producer/consumer nested keys (streamMaxLength, approximateMaxLength, visibilityTimeout, bufferSize, concurrency, blockingTimeout, reclaimInterval) that don't exist on config.RedisQueue — checked against sdk/config/queue.go, which only reads addr, password, and the embedded RedisOptions fields, plus group, key_prefix and max_attempts. Filling in the old sample as written would compile and start fine, since it's YAML under a key the struct doesn't declare, and every one of those settings would be silently ignored. Replaced with the fields the struct actually has. Still commented out — redis stays opt-in, this only fixes what filling it in would produce.
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
settings:
|
|
application:
|
|
# dev开发环境 test测试环境 prod线上环境
|
|
mode: dev
|
|
# 服务器ip,默认使用 0.0.0.0
|
|
host: 0.0.0.0
|
|
# 服务名称
|
|
name: testApp
|
|
# 端口号
|
|
port: 8000 # 服务端口号
|
|
readtimeout: 1
|
|
writertimeout: 2
|
|
# 数据权限功能开关
|
|
enabledp: false
|
|
logger:
|
|
# 日志存放路径
|
|
path: temp/logs
|
|
# 日志输出,file:文件,default:命令行,其他:命令行
|
|
stdout: '' #控制台日志,启用后,不输出到文件
|
|
# 日志等级, trace, debug, info, warn, error, fatal
|
|
level: trace
|
|
# 数据库日志开关
|
|
enableddb: false
|
|
jwt:
|
|
# token 密钥,生产环境时及的修改
|
|
secret: go-admin
|
|
# token 过期时间 单位:秒
|
|
timeout: 3600
|
|
database:
|
|
# 数据库类型 mysql, sqlite3, postgres, sqlserver
|
|
# sqlserver: sqlserver://用户名:密码@地址?database=数据库名
|
|
driver: mysql
|
|
# 数据库连接字符串 mysql 缺省信息 charset=utf8&parseTime=True&loc=Local&timeout=1000ms
|
|
source: user:password@tcp(127.0.0.1:3306)/dbname?charset=utf8&parseTime=True&loc=Local&timeout=1000ms
|
|
# databases:
|
|
# 'locaohost:8000':
|
|
# driver: mysql
|
|
# # 数据库连接字符串 mysql 缺省信息 charset=utf8&parseTime=True&loc=Local&timeout=1000ms
|
|
# source: user:password@tcp(127.0.0.1:3306)/dbname?charset=utf8&parseTime=True&loc=Local&timeout=1000ms
|
|
# registers:
|
|
# - sources:
|
|
# - user:password@tcp(127.0.0.1:3306)/dbname?charset=utf8&parseTime=True&loc=Local&timeout=1000ms
|
|
gen:
|
|
# 代码生成读取的数据库名称
|
|
dbname: dbname
|
|
# 代码生成是使用前端代码存放位置,需要指定到src文件夹,相对路径
|
|
frontpath: ../go-admin-ui/src
|
|
extend: # 扩展项使用说明
|
|
demo:
|
|
name: data
|
|
cache:
|
|
# redis:
|
|
# addr: 127.0.0.1:6379
|
|
# password: xxxxxx
|
|
# db: 2
|
|
# key存在即可
|
|
memory: ''
|
|
queue:
|
|
memory:
|
|
poolSize: 100
|
|
# redis:
|
|
# addr: 127.0.0.1:6379
|
|
# password: xxxxxx
|
|
# group: go-admin # 消费组,同一应用的多个实例必须用同一个值
|
|
# key_prefix: go-admin # 加在 stream key 前面,多个应用共用一个 redis 时用于隔离
|
|
# max_attempts: 5 # 消息投递失败的最大重试次数
|
|
locker:
|
|
redis: |