# Ignore node_modules and other dependency directories
node_modules
bower_components
vendor

# Ignore logs and temporary files
*.log
*.tmp
*.swp

# Ignore .env files and other environment files
.env
.env.*
*.local

# Ignore git-related files
.git
.gitignore

# Ignore Docker-related files and configs
.dockerignore
docker-compose.yml

# Ignore build and cache directories
dist
build
.cache
__pycache__

# Ignore Python virtualenvs (the image installs its own deps) and tool caches
.venv
.venv-*
venv
*.egg-info
.mypy_cache
.pytest_cache
.ruff_cache
htmlcov

# Ignore Terraform working dirs and state
**/.terraform
*.tfstate
*.tfstate.*

# Ignore IDE and editor configurations
.vscode
.idea
*.sublime-project
*.sublime-workspace
.DS_Store  # macOS-specific

# Ignore test and coverage files
coverage
*.coverage
*.test.js
*.spec.js
tests
