Files
go-meter/.gitignore
T
root 2fd6bd9ae0 feat: workspace keys 接口解析 + 账单采集健壮性
- lib.rs: 新增 KEYS_PATH 路由识别 /workspace/<id>/keys;改用 AtomicBool 做状态标记
- lib.rs: 采集逻辑调整 —— items 判定由 >=3 放宽为 >0,payload 字段 items → details
- main.ts / main.rs: 同步调用点

另:.gitignore 补 tmp_* 规则 —— 实测 tmp_cookie.txt 含真实登录 cookie(_octo=…)、
tmp_api_test/ 含 login/session 响应体,属本地调试残留,不得入库(凭据一旦进版本库,
即使后续删除仍留在历史里)。
2026-09-21 10:07:23 +08:00

40 lines
717 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Logs
logs
*.log
*.err
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# Rust / Tauri
src-tauri/target
node_modules
dist
dist-ssr
*.local
# 敏感数据目录,严禁上传(含服务器私钥/密码/云密钥)
(服务器数据)重要!!!禁止上传git/
# 本地调试残留
release-console.log*
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# 本地调试残留:探针脚本与其抓包产物。
# tmp_cookie.txt 实测含真实登录 cookie(_octo=...),tmp_api_test/ 含 login/session 响应体,
# 一律不入库 —— 凭据进版本库后即使删除也会留在历史里。
tmp_*