Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- app/.hfignore +53 -0
app/.hfignore
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ignore Python cache and virtual environments
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
*.pyo
|
| 5 |
+
*.pyd
|
| 6 |
+
.venv/
|
| 7 |
+
venv/
|
| 8 |
+
env/
|
| 9 |
+
ENV/
|
| 10 |
+
bkp/
|
| 11 |
+
|
| 12 |
+
# Ignore notebooks checkpoints
|
| 13 |
+
.ipynb_checkpoints/
|
| 14 |
+
|
| 15 |
+
# Ignore system files
|
| 16 |
+
.DS_Store
|
| 17 |
+
Thumbs.db
|
| 18 |
+
|
| 19 |
+
# Ignore logs and temp files
|
| 20 |
+
*.log
|
| 21 |
+
*.tmp
|
| 22 |
+
*.bak
|
| 23 |
+
|
| 24 |
+
# Ignore environment and secret files
|
| 25 |
+
.env
|
| 26 |
+
*.env
|
| 27 |
+
.env.*
|
| 28 |
+
secrets.json
|
| 29 |
+
config.json
|
| 30 |
+
|
| 31 |
+
# Ignore build artifacts
|
| 32 |
+
dist/
|
| 33 |
+
build/
|
| 34 |
+
*.egg-info/
|
| 35 |
+
|
| 36 |
+
# Ignore datasets or large local data files
|
| 37 |
+
data/
|
| 38 |
+
*.csv
|
| 39 |
+
*.tsv
|
| 40 |
+
*.xlsx
|
| 41 |
+
*.parquet
|
| 42 |
+
|
| 43 |
+
# Ignore tests and docs (optional)
|
| 44 |
+
tests/
|
| 45 |
+
docs/
|
| 46 |
+
|
| 47 |
+
# Ignore Git folders
|
| 48 |
+
.git/
|
| 49 |
+
.gitignore
|
| 50 |
+
|
| 51 |
+
# Hugging Face specific
|
| 52 |
+
.hf_cache/
|
| 53 |
+
output/
|