# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.eggs/
.installed.cfg

# Virtual envs
.venv/
venv/
env/

# Test / lint caches
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
.ruff_cache/

# IDE
.idea/
.vscode/
*.swp

# OS
.DS_Store
Thumbs.db

# Generated terraform
*.tfstate
*.tfstate.backup
.terraform/
.terraform.lock.hcl

# Local env / secrets
.env
.env.local

# infra-x scratch / verify dirs
out/
.verify/
.release-check/
examples/out/

# Infracost ad-hoc artifacts (generated by manual `infracost scan --json > X`)
infracost.json
infracost-cost-*.json

# Snapshot test diffs (created during failed runs)
tests/snapshots/**/*.actual

# Web UI — kept locally for testing, not yet shipped publicly.
# Remove these lines when web/ is ready to ship (planned for v0.3).
/web/
/tests/test_web_api.py
/.dockerignore
