Nereus/.gitignore
Fi3w0 9490168fde chore: scaffold repository layout
Directory skeleton from PLAN.md, plus a .gitignore that blocks .env files,
kubeconfigs, terraform state and sealed-secrets key backups. Empty directories
are held by .gitkeep so the layout survives a clone.
2026-08-20 20:01:04 +02:00

22 lines
327 B
Text

# Secrets and credentials. Nothing here ever reaches the repo.
.env
.env.*
!.env.example
*.kubeconfig
kubeconfig
*sealed-secrets-key*.yaml
# Terraform. Lock file is committed on purpose, state never is.
.terraform/
*.tfstate
*.tfstate.*
*.tfvars
!*.tfvars.example
crash.log
# Build output
bin/
dist/
node_modules/
.DS_Store