| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| .venv | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Git | |
| .git/ | |
| .gitignore | |
| .gitattributes | |
| # CI/CD | |
| .github/ | |
| .gitlab-ci.yml | |
| # Documentation | |
| README.md | |
| docs/ | |
| *.md | |
| !requirements.txt | |
| # Test files | |
| test_*.py | |
| *_test.py | |
| tests/ | |
| .pytest_cache/ | |
| # Large data files (these should be in volumes) | |
| data/ | |
| vector_store/ | |
| documents/ | |
| podcasts/ | |
| *.db | |
| *.sqlite | |
| # Logs | |
| *.log | |
| logs/ | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Deployment files (not needed in container) | |
| deploy_from_env.py | |
| modal_deploy.py | |
| blaxel.yaml | |
| bl.cmd | |
| test_persistence.py | |
| # Environment files | |
| .env | |
| .env.* | |