Spaces:
Sleeping
Sleeping
Chunhua Liao
commited on
Commit
·
4ee3506
1
Parent(s):
bec9537
Add .gitignore file
Browse files- .gitignore +32 -0
.gitignore
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore compiled Python files
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
|
5 |
+
# Ignore virtual environments
|
6 |
+
venv/
|
7 |
+
.venv/
|
8 |
+
|
9 |
+
# Ignore editor/IDE specific files
|
10 |
+
.vscode/
|
11 |
+
.idea/
|
12 |
+
|
13 |
+
# Ignore OS specific files
|
14 |
+
.DS_Store
|
15 |
+
Thumbs.db
|
16 |
+
|
17 |
+
# Ignore build artifacts
|
18 |
+
dist/
|
19 |
+
build/
|
20 |
+
*.egg-info/
|
21 |
+
|
22 |
+
# Ignore dependencies
|
23 |
+
node_modules/
|
24 |
+
|
25 |
+
# Ignore temporary files
|
26 |
+
*.tmp
|
27 |
+
*.swp
|
28 |
+
*.swo
|
29 |
+
|
30 |
+
# Ignore output files
|
31 |
+
*.log
|
32 |
+
*.out
|