-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
70 lines (59 loc) · 1005 Bytes
/
.gitignore
File metadata and controls
70 lines (59 loc) · 1005 Bytes
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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
.venv/
*.egg-info/
dist/
build/
# Conda
*.conda
.conda/
conda-meta/
# Python 环境变量
backend/.env
!backend/.env.example
.env
# 缓存文件(自动生成)
backend/cache.json
backend/data/cache.json
backend/data/cache.*.json
# 按赛季类型的缓存文件
backend/data/cache.all.json
backend/data/cache.league.json
backend/data/cache.cup.json
# 每日存档文件(可选:如需保留历史数据,可删除此行并手动提交)
backend/data/cache.*.*.json
# Node.js
node_modules/
dist/
.DS_Store
# 前端环境变量(本地配置)
frontend/.env*.local
frontend/.env.production
# Homepage 配置文件(本地开发用)
homepage/config.js
homepage/dist/
homepage/node_modules/
# 日志
*.log
# IDE
.idea/
.vscode/settings.json
*.swp
*.swo
# Qwen Code
.qwen/
QWEN.md
# 测试文件(如包含敏感数据)
test/*.json
!test/.gitkeep
# macOS
.DS_Store
.AppleDouble
.LSOverride
frontend/.env.development