Spaces:
Sleeping
Sleeping
Add .gitignore file to exclude unnecessary files and directories
Browse files- .gitignore +98 -0
.gitignore
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ==========================================
|
| 2 |
+
# HuggingFace CrownCode Backend - .gitignore
|
| 3 |
+
# ==========================================
|
| 4 |
+
|
| 5 |
+
# Python
|
| 6 |
+
__pycache__/
|
| 7 |
+
*.py[cod]
|
| 8 |
+
*$py.class
|
| 9 |
+
*.so
|
| 10 |
+
.Python
|
| 11 |
+
venv/
|
| 12 |
+
env/
|
| 13 |
+
ENV/
|
| 14 |
+
.venv/
|
| 15 |
+
.env
|
| 16 |
+
.env.*
|
| 17 |
+
!.env.example
|
| 18 |
+
|
| 19 |
+
# Build/Distribution
|
| 20 |
+
build/
|
| 21 |
+
develop-eggs/
|
| 22 |
+
dist/
|
| 23 |
+
downloads/
|
| 24 |
+
eggs/
|
| 25 |
+
.eggs/
|
| 26 |
+
lib/
|
| 27 |
+
lib64/
|
| 28 |
+
parts/
|
| 29 |
+
sdist/
|
| 30 |
+
var/
|
| 31 |
+
wheels/
|
| 32 |
+
*.egg-info/
|
| 33 |
+
.installed.cfg
|
| 34 |
+
*.egg
|
| 35 |
+
|
| 36 |
+
# Testing
|
| 37 |
+
.pytest_cache/
|
| 38 |
+
.coverage
|
| 39 |
+
htmlcov/
|
| 40 |
+
.tox/
|
| 41 |
+
.nox/
|
| 42 |
+
coverage.xml
|
| 43 |
+
*.cover
|
| 44 |
+
*.py,cover
|
| 45 |
+
|
| 46 |
+
# Type checking
|
| 47 |
+
.mypy_cache/
|
| 48 |
+
.dmypy.json
|
| 49 |
+
dmypy.json
|
| 50 |
+
.pyre/
|
| 51 |
+
.pytype/
|
| 52 |
+
|
| 53 |
+
# IDE
|
| 54 |
+
.vscode/
|
| 55 |
+
.idea/
|
| 56 |
+
*.swp
|
| 57 |
+
*.swo
|
| 58 |
+
*~
|
| 59 |
+
|
| 60 |
+
# Logs
|
| 61 |
+
*.log
|
| 62 |
+
logs/
|
| 63 |
+
|
| 64 |
+
# OS
|
| 65 |
+
.DS_Store
|
| 66 |
+
Thumbs.db
|
| 67 |
+
|
| 68 |
+
# Temporary files
|
| 69 |
+
tmp/
|
| 70 |
+
temp/
|
| 71 |
+
*.tmp
|
| 72 |
+
*.bak
|
| 73 |
+
*.backup
|
| 74 |
+
|
| 75 |
+
# Models and large files (keep for HF Spaces)
|
| 76 |
+
# Uncomment if you want to ignore models locally
|
| 77 |
+
# *.pth
|
| 78 |
+
# *.pt
|
| 79 |
+
# *.ckpt
|
| 80 |
+
# *.safetensors
|
| 81 |
+
# *.h5
|
| 82 |
+
# *.pkl
|
| 83 |
+
|
| 84 |
+
# Audio/Video files (if any during development)
|
| 85 |
+
*.wav
|
| 86 |
+
*.mp3
|
| 87 |
+
*.flac
|
| 88 |
+
*.mp4
|
| 89 |
+
*.avi
|
| 90 |
+
|
| 91 |
+
# Jupyter Notebooks checkpoints
|
| 92 |
+
.ipynb_checkpoints/
|
| 93 |
+
|
| 94 |
+
# Secrets
|
| 95 |
+
secrets/
|
| 96 |
+
credentials/
|
| 97 |
+
*.pem
|
| 98 |
+
*.key
|