product_profile_ingestion/.gitignore
2026-08-18 14:41:02 +02:00

68 lines
936 B
Plaintext

# --- Secrets & local configuration ---
.env
.env.*
!.env.example
# --- Runtime pipeline state ---
.processed_manifest.json
# --- Local data (keep empty folders via .gitkeep) ---
data/chunks/*
!data/chunks/.gitkeep
data/productProfiles/*
!data/productProfiles/.gitkeep
# --- Python ---
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Virtual environments
venv/
.venv/
env/
# Packaging / build
build/
dist/
*.egg-info/
*.egg
pip-wheel-metadata/
# Test & type-check caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/
# --- Docker (local overrides only; compose file stays tracked) ---
docker-compose.override.yml
docker-compose.*.local.yml
# --- IDE & editor ---
.vscode/
!.vscode/extensions.json
!.vscode/settings.json
.idea/
*.sublime-project
*.sublime-workspace
# --- OS ---
.DS_Store
Thumbs.db
Desktop.ini
ehthumbs.db
# --- Logs & scratch ---
*.log
*.tmp
*.bak