2
0

.gitignore 1.2 KB

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