Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| share/python-wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # Virtual environments | |
| .env | |
| .env.* | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| # Credentials and API Keys (CRITICAL FOR SECURITY) | |
| *.env | |
| .env* | |
| *_key | |
| *_secret | |
| *_token | |
| *.key | |
| *.pem | |
| *.p12 | |
| *.pfx | |
| *.crt | |
| *.cert | |
| *.cer | |
| secrets/ | |
| secrets.json | |
| credentials.json | |
| service-account*.json | |
| .secrets/ | |
| .credentials/ | |
| config/secrets/ | |
| # Google Cloud and other cloud credentials | |
| gcloud/ | |
| .gcloud/ | |
| .google/ | |
| .aws/ | |
| .azure/ | |
| # IDE and Editor files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .vim/ | |
| .emacs.d/ | |
| # OS specific files | |
| .DS_Store | |
| .DS_Store? | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Git | |
| .git | |
| .gitignore | |
| .github/ | |
| # Development and Testing | |
| tests/ | |
| test/ | |
| *_test.py | |
| test_*.py | |
| pytest_cache/ | |
| .pytest_cache/ | |
| .coverage | |
| coverage/ | |
| htmlcov/ | |
| .tox/ | |
| .nox/ | |
| .hypothesis/ | |
| # Documentation (exclude from Docker image) | |
| README.md | |
| *.md | |
| docs/ | |
| CHANGELOG* | |
| LICENSE* | |
| # Logs and temporary files | |
| *.log | |
| logs/ | |
| *.tmp | |
| *.temp | |
| tmp/ | |
| temp/ | |
| # Database files (local development) | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| data/ | |
| database/ | |
| db/ | |
| # Node.js (if any frontend components) | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # Jupyter Notebook checkpoints | |
| .ipynb_checkpoints/ | |
| # MacOS specific | |
| *.DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Windows specific | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| # Linux specific | |
| *~ | |
| .directory | |
| # Backup files | |
| *.bak | |
| *.backup | |
| *.old | |
| # Cache directories | |
| .cache/ | |
| cache/ | |
| .gradio/ | |
| # Hugging Face specific exclusions | |
| .huggingface/ | |
| models/ | |
| model_cache/ | |
| transformers_cache/ | |
| # Development artifacts | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| .pyre/ | |
| .pytype/ | |