前端重构: - 新增 api/ 目录统一管理所有 API 请求 - 所有 stores 和 pages 改为使用 api 模块 - 修复日期格式化函数,支持 Date 对象和 ISO 字符串 - 修复 TransactionItem 使用 CategoryIcon 组件 - 优化 ChartWrapper 区分 H5 和小程序环境 后端修复: - 修复 auth 中间件 PUBLIC_PATHS 缺少 demo-login - 修复备份工具命令注入漏洞,改用 execFile - 修复 stats 路由 type 参数验证 - 优化分类排序为批量 SQL 更新 - 合并迁移和删除为数据库事务原子操作 - 修复交易和统计日期返回格式 - 新增自动备份功能(启动时备份)
22 lines
391 B
Plaintext
22 lines
391 B
Plaintext
# Server
|
|
PORT=3000
|
|
|
|
# Security
|
|
TOKEN_SECRET=your_random_secret_here
|
|
|
|
# CORS (comma-separated origins, empty = allow all)
|
|
CORS_ORIGINS=
|
|
|
|
# MySQL
|
|
DB_HOST=your_mysql_host_here
|
|
DB_USER=your_mysql_user_here
|
|
DB_PASSWORD=your_mysql_password_here
|
|
DB_NAME=your_mysql_name_here
|
|
|
|
# Backup
|
|
BACKUP_DIR=/var/backups/xiaocai
|
|
|
|
# WeChat Mini Program
|
|
WX_APPID=your_wx_appid_here
|
|
WX_SECRET=your_wx_secret_here
|