Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Commit ·
f6432d8
1
Parent(s): e83f59a
adding frontend gitignore
Browse files- .gitignore +56 -6
.gitignore
CHANGED
|
@@ -5,16 +5,66 @@ build/
|
|
| 5 |
dist/
|
| 6 |
wheels/
|
| 7 |
*.egg-info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
# Virtual environments
|
| 10 |
-
.venv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
.env
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
.DS_Store
|
| 13 |
-
.
|
| 14 |
-
*.
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
|
|
|
| 18 |
.cursor/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
session_logs/
|
|
|
|
|
|
|
| 20 |
skills/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
dist/
|
| 6 |
wheels/
|
| 7 |
*.egg-info
|
| 8 |
+
.pytest_cache/
|
| 9 |
+
.mypy_cache/
|
| 10 |
+
.tox/
|
| 11 |
+
.coverage
|
| 12 |
+
htmlcov/
|
| 13 |
+
.ipynb_checkpoints/
|
| 14 |
|
| 15 |
# Virtual environments
|
| 16 |
+
.venv/
|
| 17 |
+
venv/
|
| 18 |
+
ENV/
|
| 19 |
+
env/
|
| 20 |
+
|
| 21 |
+
# Environment and Secrets
|
| 22 |
.env
|
| 23 |
+
.env.local
|
| 24 |
+
.env.*
|
| 25 |
+
!.env.example
|
| 26 |
+
*.local
|
| 27 |
+
credentials*.json
|
| 28 |
+
|
| 29 |
+
# OS-specific
|
| 30 |
.DS_Store
|
| 31 |
+
Thumbs.db
|
| 32 |
+
*.swp
|
| 33 |
+
|
| 34 |
+
# IDE-specific
|
| 35 |
+
.vscode/
|
| 36 |
+
.idea/
|
| 37 |
.cursor/
|
| 38 |
+
.history/
|
| 39 |
+
*.sublime-project
|
| 40 |
+
*.sublime-workspace
|
| 41 |
+
|
| 42 |
+
# Frontend (Node.js)
|
| 43 |
+
frontend/node_modules/
|
| 44 |
+
frontend/dist/
|
| 45 |
+
frontend/.cache/
|
| 46 |
+
frontend/*.local
|
| 47 |
+
frontend/.eslintcache
|
| 48 |
+
frontend/npm-debug.log*
|
| 49 |
+
frontend/yarn-debug.log*
|
| 50 |
+
frontend/yarn-error.log*
|
| 51 |
+
|
| 52 |
+
# Docker
|
| 53 |
+
.docker/
|
| 54 |
+
|
| 55 |
+
# Project-specific
|
| 56 |
session_logs/
|
| 57 |
+
/logs
|
| 58 |
+
hf-agent-leaderboard/
|
| 59 |
skills/
|
| 60 |
+
.claude/
|
| 61 |
+
*.jsonl
|
| 62 |
+
*.csv
|
| 63 |
+
|
| 64 |
+
# ML / Data
|
| 65 |
+
data/
|
| 66 |
+
datasets/
|
| 67 |
+
models/
|
| 68 |
+
checkpoint-*/
|
| 69 |
+
runs/
|
| 70 |
+
wandb/
|