.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. openapi.yaml
  18. # Local docs directories
  19. /docs/.obsidian
  20. # Local .terraform directories
  21. **/.terraform/*
  22. .terraform
  23. .terraform.lock.hcl
  24. *kubeconfig*
  25. !*kubeconfig*.go
  26. # .tfstate files
  27. *.tfstate
  28. *.tfstate.*
  29. # Crash log files
  30. crash.log
  31. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  32. # password, private keys, and other secrets. These should not be part of version
  33. # control as they are data points which are potentially sensitive and subject
  34. # to change depending on the environment.
  35. #
  36. *.tfvars
  37. *.tfvars.json
  38. # Ignore override files as they are usually used to override resources locally and so
  39. # are not checked in
  40. override.tf
  41. override.tf.json
  42. *_override.tf
  43. *_override.tf.json
  44. # Include override files you do wish to add to version control using negated pattern
  45. #
  46. # !example_override.tf
  47. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  48. # example: *tfplan*
  49. # Ignore CLI configuration files
  50. .terraformrc
  51. terraform.rc
  52. # Ignore editor files
  53. .vscode
  54. tmp