chore: 添加 httpx 依赖(Track Webhook 通知);gitignore 忽略根目录 .env 防密钥入库

This commit is contained in:
yueli
2026-09-02 18:39:17 +08:00
parent 87919146de
commit 3cb9b0da98
2 changed files with 5 additions and 1 deletions

2
.gitignore vendored
View File

@ -11,6 +11,8 @@ inventory-web/dist/
inventory-web/*.local
# --- 通用忽略 ---
# 根目录 .envdocker compose 读取,含 Track Webhook 密钥等敏感配置)
.env
.idea/
.vscode/
.DS_Store

View File

@ -33,4 +33,6 @@ pytz
# [新增] 进度条库 (脚本和任务所需)
tqdm>=4.66.0
# [新增] pgvector 向量数据库支持(以图搜图 / 实时向量提取)
pgvector>=0.2.0
pgvector>=0.2.0
# [新增] HTTP 客户端Track 系统 Webhook 异步通知)
httpx>=0.24.0