-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
116 lines (97 loc) · 1.63 KB
/
.gitignore
File metadata and controls
116 lines (97 loc) · 1.63 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
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# =========================
# 通用忽略规则
# =========================
# 依赖目录
node_modules/
# 日志文件
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# 环境变量文件 (通常不提交,除非是模板)
.env.local
.env.development.local
.env.test.local
.env.production.local
deploy/.env
deploy/.env.local
# 编辑器和IDE
.idea/
.vscode/
*.swp
*.swo
.DS_Store
*.sublime-project
*.sublime-workspace
# =========================
# 构建和输出目录
# =========================
# 通用构建输出
dist/
out/
build/
.cache/
.next/
.nuxt/
.cache/
*.exe
# =========================
# Turborepo 特定
# =========================
# Turborepo 的远程缓存目录 (本地缓存通常不提交)
.turbo/
# =========================
# 应用特定 (apps/)
# =========================
# Web 应用 (React, Vue, etc.)
apps/web/.env
apps/web/public/build/
apps/web/.next/
apps/web/dist/
apps/web/build/
# 后端应用 (Node.js)
apps/backend/.env
apps/backend/dist/
apps/backend/build/
# 文档站点 (Docusaurus, VitePress, etc.)
apps/docs/.vitepress/cache/
apps/docs/.docusaurus/
apps/docs/dist/
apps/docs/build/
# =========================
# 包特定 (packages/)
# =========================
# 所有包的构建输出
packages/*/dist/
packages/*/build/
packages/*/lib/
packages/*/esm/
packages/*/cjs/
# 测试覆盖率
coverage/
.nyc_output/
# 其他
.tmp*
.claude/