.gitignore 1.2 KB

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