From 3cb9b0da980e436dfc64b054ea6ce87005001a60 Mon Sep 17 00:00:00 2001 From: yueli Date: Wed, 2 Sep 2026 18:39:17 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20httpx=20=E4=BE=9D?= =?UTF-8?q?=E8=B5=96(Track=20Webhook=20=E9=80=9A=E7=9F=A5)=EF=BC=9Bgitigno?= =?UTF-8?q?re=20=E5=BF=BD=E7=95=A5=E6=A0=B9=E7=9B=AE=E5=BD=95=20.env=20?= =?UTF-8?q?=E9=98=B2=E5=AF=86=E9=92=A5=E5=85=A5=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ inventory-backend/requirements.txt | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0ec1481..d59f27d 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,8 @@ inventory-web/dist/ inventory-web/*.local # --- 通用忽略 --- +# 根目录 .env(docker compose 读取,含 Track Webhook 密钥等敏感配置) +.env .idea/ .vscode/ .DS_Store diff --git a/inventory-backend/requirements.txt b/inventory-backend/requirements.txt index 234c87b..f528fd0 100644 --- a/inventory-backend/requirements.txt +++ b/inventory-backend/requirements.txt @@ -33,4 +33,6 @@ pytz # [新增] 进度条库 (脚本和任务所需) tqdm>=4.66.0 # [新增] pgvector 向量数据库支持(以图搜图 / 实时向量提取) -pgvector>=0.2.0 \ No newline at end of file +pgvector>=0.2.0 +# [新增] HTTP 客户端(Track 系统 Webhook 异步通知) +httpx>=0.24.0 \ No newline at end of file