Upload folder using huggingface_hub
Browse files- .gitignore +32 -0
.gitignore
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Claude Code / AI tools
|
| 2 |
+
.claude/
|
| 3 |
+
claude.md
|
| 4 |
+
CLAUDE.md
|
| 5 |
+
|
| 6 |
+
# Internal / credentials
|
| 7 |
+
*.local.json
|
| 8 |
+
*.credentials
|
| 9 |
+
*.secret
|
| 10 |
+
|
| 11 |
+
# OS
|
| 12 |
+
.DS_Store
|
| 13 |
+
Thumbs.db
|
| 14 |
+
|
| 15 |
+
# IDE
|
| 16 |
+
.idea/
|
| 17 |
+
.vscode/
|
| 18 |
+
*.swp
|
| 19 |
+
*.swo
|
| 20 |
+
*~
|
| 21 |
+
|
| 22 |
+
# Environment
|
| 23 |
+
.env
|
| 24 |
+
.env.local
|
| 25 |
+
.env.*.local
|
| 26 |
+
|
| 27 |
+
# Logs
|
| 28 |
+
*.log
|
| 29 |
+
|
| 30 |
+
# Temp
|
| 31 |
+
*.tmp
|
| 32 |
+
*.bak
|