The darwin_arm64 provider binaries (~41MB, downloaded by `terraform init`) were committed under infra/terraform/test-fleet/.terraform/ — generated, platform-specific (useless on the linux workers), and churny. Gitignore **/.terraform/* + *.tfstate*, and git rm --cached the binaries. The .terraform.lock.hcl stays tracked (it pins provider versions); run `terraform init` to re-fetch the providers locally. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
62 lines
714 B
Text
62 lines
714 B
Text
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
**/build/
|
|
.turbo/
|
|
*.tsbuildinfo
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Test/coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Temp
|
|
tmp/
|
|
.cache/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
|
|
# Swift / Xcode
|
|
*.xcuserstate
|
|
DerivedData/
|
|
.build/
|
|
|
|
# Cloud DX (ephemeral fleet inventory + local state; never commit)
|
|
.local/fleet/
|
|
.local/iter/
|
|
.local/
|
|
|
|
# Terraform: downloaded provider binaries + state are generated (the
|
|
# .terraform.lock.hcl IS committed — it pins provider versions).
|
|
**/.terraform/*
|
|
*.tfstate
|
|
*.tfstate.*
|
|
|
|
# Vault secrets live in ~/.vault (never in repo)
|
|
.vault/
|