aigenai commited on
Commit
f9f99c7
·
verified ·
1 Parent(s): 470a931

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +32 -0
.gitignore ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Node.js
2
+ node_modules/
3
+ npm-debug.log
4
+ yarn-debug.log
5
+ yarn-error.log
6
+
7
+ # 构建输出
8
+ dist/
9
+ build/
10
+
11
+ # 环境配置
12
+ .env
13
+ .env.local
14
+ .env.*.local
15
+
16
+ # 系统文件
17
+ .DS_Store
18
+ Thumbs.db
19
+
20
+ # 日志文件
21
+ *.log
22
+ ksa.log
23
+
24
+ # 特定文件
25
+ ksa_x64
26
+ run.sh
27
+
28
+ # IDE
29
+ .idea/
30
+ .vscode/
31
+ *.swp
32
+ *.swo