| # Amazon Multimodal RAG - Git Ignore File | |
| # ============================================ | |
| # Python | |
| # ============================================ | |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| pip-wheel-metadata/ | |
| share/python-wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| MANIFEST | |
| # PyInstaller | |
| *.manifest | |
| *.spec | |
| # Unit test / coverage reports | |
| htmlcov/ | |
| .tox/ | |
| .nox/ | |
| .coverage | |
| .coverage.* | |
| .cache | |
| nosetests.xml | |
| coverage.xml | |
| *.cover | |
| *.py,cover | |
| .hypothesis/ | |
| .pytest_cache/ | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # pyenv | |
| .python-version | |
| # Virtual Environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| # ============================================ | |
| # Project Specific | |
| # ============================================ | |
| # Vector Database | |
| chromadb_store/ | |
| *.chroma | |
| # Downloaded Images | |
| images/ | |
| *.jpg | |
| *.jpeg | |
| *.png | |
| *.gif | |
| *.webp | |
| !frontend/amazon-logo.png | |
| # Dataset Files | |
| *.csv | |
| !example.csv | |
| !amazon_multimodal_clean.csv | |
| # Model Cache (HuggingFace) | |
| models/ | |
| .cache/ | |
| huggingface/ | |
| # Temporary Files | |
| temp/ | |
| tmp/ | |
| *.tmp | |
| # Log Files | |
| *.log | |
| logs/ | |
| # ============================================ | |
| # Environment Variables | |
| # ============================================ | |
| .env | |
| .env.local | |
| .env.*.local | |
| *.env | |
| # ============================================ | |
| # IDE & Editors | |
| # ============================================ | |
| # VSCode | |
| .vscode/ | |
| *.code-workspace | |
| # PyCharm | |
| .idea/ | |
| *.iml | |
| # Sublime Text | |
| *.sublime-project | |
| *.sublime-workspace | |
| # Vim | |
| *.swp | |
| *.swo | |
| *~ | |
| # Emacs | |
| *~ | |
| \#*\# | |
| .\#* | |
| # ============================================ | |
| # Operating Systems | |
| # ============================================ | |
| # macOS | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| ._* | |
| # Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| $RECYCLE.BIN/ | |
| # Linux | |
| *~ | |
| # ============================================ | |
| # Miscellaneous | |
| # ============================================ | |
| # Compressed files | |
| *.zip | |
| *.tar.gz | |
| *.rar | |
| # Backups | |
| *.bak | |
| *.backup | |
| # API Keys (extra safety) | |
| *api_key* | |
| *secret* | |
| credentials.json | |