From 32831d7d6de65267b864a814a03fc06310cbac90 Mon Sep 17 00:00:00 2001 From: aszerW Date: Thu, 19 Mar 2026 21:22:03 +0800 Subject: [PATCH] =?UTF-8?q?chore(env):=20=E5=88=A0=E9=99=A4=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B=E7=8E=AF=E5=A2=83=E5=8F=98=E9=87=8F=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了 .env.example 文件及其所有配置内容 - 删除了 Tushare API 的示例令牌配置 - 移除了钉钉机器人的示例 webhook 和 secret 配置 - 删除了 PostgreSQL 数据库的示例连接信息 - 简化项目环境变量管理,避免泄露敏感信息 --- .env.example | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index bc4de5c..0000000 --- a/.env.example +++ /dev/null @@ -1,16 +0,0 @@ -# ETF策略项目 - 环境变量配置模板 -# 复制此文件为 .env 并填入真实值 - -# ==================== Tushare API ==================== -TUSHARE_TOKEN=your_tushare_token_here - -# ==================== 钉钉机器人 ==================== -DINGTALK_WEBHOOK=https://oapi.dingtalk.com/robot/send?access_token=xxx -DINGTALK_SECRET=SECxxx - -# ==================== PostgreSQL数据库 ==================== -DB_HOST=192.168.0.115 -DB_PORT=5432 -DB_NAME=etf_db -DB_USER=admin -DB_PASS=admin