# Python runtime artifacts __pycache__/ *.py[cod] *.pyo *.pyd *.egg-info/ dist/ build/ *.egg # Virtual environments .venv/ venv/ env/ ENV/ # Testing .pytest_cache/ .coverage htmlcov/ *.cover # Jupyter / notebooks .ipynb_checkpoints/ *.ipynb # IDEs & editors .vscode/ .idea/ *.swp *.swo .DS_Store Thumbs.db # Git .git/ .gitignore # Docker itself (no recursive COPY) Dockerfile .dockerignore # Local cache & model downloads (these should be downloaded at runtime on HF Spaces) # Uncomment the next line ONLY if you do NOT want to pre-bake any HF cache # cache/ # Logs and temp *.log *.tmp tmp/ temp/ logs/ # CI / secrets (NEVER bake into image) .env .env.* secrets/ # Node / frontend (only backend lives here) node_modules/