| # Git files | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Docker files | |
| Dockerfile | |
| .dockerignore | |
| # Python cache | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| .venv/ | |
| # IDE files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Logs | |
| *.log | |
| # Documentation | |
| README.md | |
| docs/ | |
| # Test files | |
| tests/ | |
| .pytest_cache/ | |
| # Large files that shouldn't be in container | |
| *.zip | |
| *.tar.gz | |
| *.doc | |
| *.docx | |
| # Environment files | |
| .env | |
| .env.local | |
| .env.staging | |
| .env.prod | |