| # Git | |
| .git | |
| .gitignore | |
| # Python | |
| __pycache__ | |
| *.py[cod] | |
| *.pyo | |
| *.pyd | |
| .Python | |
| *.so | |
| .eggs | |
| *.egg-info | |
| .mypy_cache | |
| .pytest_cache | |
| # Virtual environments | |
| venv | |
| .venv | |
| env | |
| # IDE | |
| .vscode | |
| .idea | |
| *.swp | |
| *.swo | |
| # Data and outputs (large files) | |
| data/ | |
| outputs/ | |
| temp/ | |
| models/ | |
| # Tests (not needed in production) | |
| tests/ | |
| # Documentation | |
| docs/ | |
| *.md | |
| !README.md | |
| # Jupyter notebooks | |
| *.ipynb | |
| .ipynb_checkpoints | |
| # Docker | |
| Dockerfile | |
| docker-compose*.yml | |
| .dockerignore | |
| # Misc | |
| .env | |
| .env.* | |
| *.log | |