refactor(utils): 修复密码哈希比较逻辑错误 feat(user): 新增按状态筛选优惠券接口 docs: 添加虚拟发货与任务中心相关文档 fix(wechat): 修正Code2Session上下文传递问题 test: 补充订单折扣与积分转换测试用例 build: 更新配置文件与构建脚本 style: 清理多余的空行与注释
31 lines
597 B
TOML
31 lines
597 B
TOML
[mysql]
|
|
[mysql.read]
|
|
addr = "127.0.0.1:3306"
|
|
user = "root"
|
|
pass = "123456"
|
|
name = "bindbox_game"
|
|
[mysql.write]
|
|
addr = "127.0.0.1:3306"
|
|
user = "root"
|
|
pass = "123456"
|
|
name = "bindbox_game"
|
|
|
|
[redis]
|
|
addr = "127.0.0.1:6379"
|
|
pass = ""
|
|
db = 0
|
|
|
|
[random]
|
|
commit_master_key = "a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456"
|
|
|
|
[wechat]
|
|
app_id = ""
|
|
app_secret = ""
|
|
lottery_result_template_id = ""
|
|
|
|
[wechatpay]
|
|
mchid = ""
|
|
serial_no = ""
|
|
private_key_path = ""
|
|
api_v3_key = ""
|
|
notify_url = "https://example.com/api/pay/wechat/notify" |