-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (74 loc) · 1.3 KB
/
.gitignore
File metadata and controls
84 lines (74 loc) · 1.3 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
.idea
# 依赖目录
node_modules
*/node_modules
**/node_modules
package-lock.json
yarn.lock
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Electron相关
.DS_Store
dist
dist-ssr
*.local
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# 编译输出
/out
*/out
**/out
*.js.map
*.css.map
# 日志文件
logs
*.log
# Trae应用相关
*.asar
Trae.app/Contents/Resources/app/node_modules.asar
*.vsix
.vscode-test/
.vscode-test-web/
# 临时文件
.tmp
.temp
*.swp
*.swo
.cache
# 超出GitHub大小限制的文件
ai-agent/decompiled/assembly/ai-agent.asm
ai-agent/decompiled/assembly/full_disassembly.asm
Trae.app/Contents/Frameworks/Electron Framework.framework/Electron Framework
Trae.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
Trae.app/Contents/Frameworks/Electron Framework.framework/Versions/Current/Electron Framework
# 排除整个Trae.app目录,因为其中包含了很多二进制文件
Trae.app/
# 排除其他可能超出GitHub限制的大型二进制文件
*.framework
*.dylib
*.so
*.dll
*.exe
*.app
*.bin
*.obj
*.o
*.wasm
# 大型二进制文件和可执行文件
ai-agent/ai-agent
cli.js/cli.js
main.js/main.js
# 构建和输出目录
build/
tmp/
.nyc_output/
coverage/
# IDE特定文件
.vs/
*.sublime-project
*.sublime-workspace
*.settings/