Spaces:
Sleeping
Sleeping
| # -------------------------- | |
| # Python | |
| # -------------------------- | |
| __pycache__/ | |
| *.py[cod] | |
| *.pyo | |
| *.pyd | |
| *.so | |
| *.egg-info/ | |
| *.egg | |
| *.log | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| .venv/ | |
| # Byte-compiled / optimized / DLL files | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| *.pdb | |
| # -------------------------- | |
| # FastAPI / Uvicorn / Cache | |
| # -------------------------- | |
| .cache/ | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .coverage | |
| htmlcov/ | |
| dist/ | |
| build/ | |
| # -------------------------- | |
| # Environment / Secrets | |
| # -------------------------- | |
| .env | |
| .env.local | |
| .env.*.local | |
| *.secret | |
| *.key | |
| # -------------------------- | |
| # IDE / Editors | |
| # -------------------------- | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # -------------------------- | |
| # OS Generated | |
| # -------------------------- | |
| .DS_Store | |
| Thumbs.db | |
| # -------------------------- | |
| # Uploads (if stored locally) | |
| # -------------------------- | |
| uploads/ | |
| media/ | |
| static/uploads/ | |
| tmp/ | |
| # -------------------------- | |
| # Mongo / GridFS (if local) | |
| # -------------------------- | |
| fs/ | |
| *.gridfs | |
| *.lock | |
| # -------------------------- | |
| # Node (if frontend exists) | |
| # -------------------------- | |
| node_modules/ | |
| npm-debug.log | |
| yarn-debug.log | |
| yarn-error.log | |