forked from hsliuping/TradingAgents-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
128 lines (109 loc) · 1.78 KB
/
.gitignore
File metadata and controls
128 lines (109 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Python环境和缓存
env/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
# 环境变量文件 (包含敏感API密钥)
.env
.env.local
.env.*.local
.env.db
.env.mongodb*
frontend
backend
.venv
# 系统文件
.DS_Store
Thumbs.db
# 数据文件
*.csv
*.json
*.xlsx
*.xls
# 项目特定目录
src/
eval_results/
eval_data/
results/
logs/
temp/
# 数据缓存目录 (不纳入版本控制)
cache/
data/
data_backup_*/
web/data/
dataflows/data_cache/
tradingagents/dataflows/data_cache/
finnhub_data/
enhanced_analysis_reports/
web/finnhub_data/
web/results/
web/eval_results/
docs/v1.0.0-preview/
# 股票数据缓存文件 (不纳入版本控制)
*_stock_data_*.txt
*_stock_data_*.json
*_stock_data_*.csv
china_stocks/
us_stocks/
stock_cache/
# IDE和编辑器文件
.vscode/
.idea/
*.swp
*.swo
*~
# 测试和覆盖率报告
.coverage
.pytest_cache/
htmlcov/
# 文档构建
docs/_build/
site/
# 贡献相关文档 (不纳入版本控制)
docs/contribution/
# AI工具目录 (不纳入版本控制)
.trae/
.augment/
# 自动清理脚本添加的规则
# Python包元数据
tradingagents.egg-info/
# 临时输出文件
# Python缓存
*.py[cod]
*$py.class
# IDE文件
.vscode/settings.json
# 日志文件
*.log
*.tar
# 过时的版本文档
*_PREVIEW_README.md
RELEASE_NOTES_PREVIEW.md
DEEPSEEK_PREVIEW_README.md
# 优化计划文档 (内部参考,不纳入版本控制)
docs/OPTIMIZATION_PLAN.md
docs/OPTIMIZATION_PLAN_EN.md
docs/README_OPTIMIZATION.md
# 计划目录 (内部规划文档,不纳入版本控制)
plan/
# 临时开发调试文件 (不纳入版本控制)
test_*_conversion.py
test_*_reports.py
test_*_function.py
test_export_simple.py
test_wkhtmltopdf.py
COMMIT_SUMMARY.md
# Python缓存文件
*.so
# Streamlit缓存
.streamlit/cache/
*.cache
# 临时文件
*.tmp
*.temp
*.pyc.*
*.pyo.*