# Python artifacts __pycache__/ *.pyc *.pyo *.pyd *.egg-info/ .pytest_cache/ pytest-cache-files-*/ .cache/ .coverage htmlcov/ .mypy_cache/ .ruff_cache/ # Virtualenvs .venv/ venv/ env/ # Tests (not needed at runtime) tests/ test_*.py *_test.py # Development + VCS .git/ .gitignore .env .env.local .env.*.local .idea/ .vscode/ *.swp *.swo .DS_Store # Bulky non-runtime content bench/ examples/ eval/ data/ indexes/ runtime/ *.md !README.md !PRODUCTION.md # Other Docker artifacts (avoid copying the images themselves) docker-compose*.yml Dockerfile* Makefile deployment/ scripts/*.sh !scripts/entrypoint.sh !scripts/healthcheck.sh