Spaces:
Sleeping
Sleeping
File size: 321 Bytes
3d40e5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # Environment
.env
# Python cache
__pycache__/
*.pyc
*.pyo
*.pyd
# Virtual environments
venv/
.venv/
env/
inter/
# Node / frontend (not needed for backend deploy)
frontend/
node_modules/
# Uploads (runtime data)
uploads/
# Git
.git/
.gitignore
# OS / IDE junk
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
backend/.env |