-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
100 lines (88 loc) · 2.79 KB
/
.gitignore
File metadata and controls
100 lines (88 loc) · 2.79 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
# =============================================================================
# 虚拟环境
# =============================================================================
.venv/
venv/
env/
.env/
.env.local
.env.*.local
# =============================================================================
# Python 缓存
# =============================================================================
__pycache__/
*.pyc
*.py[cod]
*$py.class
*.so
*.pyo
*.pyd
.Python
*.egg/
*.egg-info/
.eggs/
# =============================================================================
# 依赖目录
# =============================================================================
node_modules/
frontend/node_modules/
dist/
frontend/dist/
build/
*.egg-info/
# =============================================================================
# 锁文件和日志
# =============================================================================
poetry.lock
Pipfile.lock
*.log
# =============================================================================
# 数据库文件
# =============================================================================
database.db
*.db
!*.db.example
# =============================================================================
# 配置文件(包含敏感信息)
# =============================================================================
config.yaml
!config.yaml.example
.clineignore
.env
!.env.example
# =============================================================================
# 前端构建输出
# =============================================================================
static/dist/
# =============================================================================
# 用户上传文件
# =============================================================================
static/uploads/
# =============================================================================
# 测试脚本(包含敏感信息)
# =============================================================================
backendtestscript/
# =============================================================================
# IDE 配置
# =============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
# =============================================================================
# 操作系统文件
# =============================================================================
.DS_Store
Thumbs.db
# =============================================================================
# 备份文件
# =============================================================================
*.bak
*.backup
*.old
# =============================================================================
# 类型检查缓存
# =============================================================================
.mypy_cache/
.pytype/