Spaces:
Running
Running
Create .gitignore
Browse files- .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
|