# Node
node_modules/
dist/
*.tsbuildinfo
npm-debug.log*

# Go
/gateway/bin/
*.out

# Python
__pycache__/
*.pyc
*.egg-info/
.pytest_cache/
build/
.venv/

# Terraform
.terraform/
*.tfplan
*.tfstate
*.tfstate.*
*.tfvars
!*.tfvars.example

# Env / secrets — NEVER commit
.env
.env.*
# …but DO commit the templates (every example ships one).
!.env.example
!**/.env.example
*.pem
*.key
secrets/

# OS / editor
.DS_Store
.idea/
.vscode/
