Spaces:
Running
Running
Add .gitignore file with common exclusions
Browse files- .gitignore +31 -0
.gitignore
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Environment files
|
| 2 |
+
.env
|
| 3 |
+
.env.*
|
| 4 |
+
|
| 5 |
+
# GitHub workflows/secrets
|
| 6 |
+
.github/
|
| 7 |
+
.gitignore
|
| 8 |
+
|
| 9 |
+
# Node modules
|
| 10 |
+
node_modules/
|
| 11 |
+
|
| 12 |
+
# Logs
|
| 13 |
+
*.log
|
| 14 |
+
|
| 15 |
+
# SQLite temp files
|
| 16 |
+
*.sqlite-wal
|
| 17 |
+
*.sqlite-shm
|
| 18 |
+
|
| 19 |
+
# Python cache
|
| 20 |
+
__pycache__/
|
| 21 |
+
*.pyc
|
| 22 |
+
|
| 23 |
+
# OS files
|
| 24 |
+
.DS_Store
|
| 25 |
+
Thumbs.db
|
| 26 |
+
|
| 27 |
+
# HuggingClaw state
|
| 28 |
+
.huggingclaw-state/
|
| 29 |
+
|
| 30 |
+
# Cache
|
| 31 |
+
.cache/
|