.gitignore 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .DS_Store
  2. .env
  3. docker/.env
  4. docker/github_app_private_key.pem
  5. app
  6. *.db
  7. test.yaml
  8. dist
  9. gon.hcl
  10. internal/local_templates
  11. gon*.hcl
  12. *prod.Dockerfile
  13. staging.sh
  14. *.crt
  15. *.key
  16. bin
  17. # Local docs directories
  18. /docs/.obsidian
  19. # Local .terraform directories
  20. **/.terraform/*
  21. .terraform
  22. .terraform.lock.hcl
  23. *kubeconfig*
  24. !*kubeconfig*.go
  25. # .tfstate files
  26. *.tfstate
  27. *.tfstate.*
  28. # Crash log files
  29. crash.log
  30. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  31. # password, private keys, and other secrets. These should not be part of version
  32. # control as they are data points which are potentially sensitive and subject
  33. # to change depending on the environment.
  34. #
  35. *.tfvars
  36. *.tfvars.json
  37. # Ignore override files as they are usually used to override resources locally and so
  38. # are not checked in
  39. override.tf
  40. override.tf.json
  41. *_override.tf
  42. *_override.tf.json
  43. # Include override files you do wish to add to version control using negated pattern
  44. #
  45. # !example_override.tf
  46. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  47. # example: *tfplan*
  48. # Ignore CLI configuration files
  49. .terraformrc
  50. terraform.rc
  51. # Ignore editor files
  52. .vscode
  53. tmp