Spaces:
Paused
Paused
| # Git files | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDEs | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Workspace and temp files | |
| workspace/ | |
| tmp/ | |
| temp/ | |
| *.tmp | |
| # Logs | |
| *.log | |
| logs/ | |
| # Backup files | |
| *_backup.* | |
| *.bak | |
| # Large files that aren't needed | |
| assets/ | |
| examples/ | |
| tests/ | |
| .pytest_cache/ | |
| # Documentation (keep only README.md) | |
| *.md | |
| !README.md | |
| # Config examples | |
| config/config.example*.toml | |
| # Deployment docs | |
| DEPLOYMENT_*.md | |
| docker-commands.md | |