Repos with recipes to deploy some infrastructure services
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

75 rader
1.0 KiB

  1. # These are some examples of commonly ignored file patterns.
  2. # You should customize this list as applicable to your project.
  3. # Learn more about .gitignore:
  4. # https://www.atlassian.com/git/tutorials/saving-changes/gitignore
  5. # ---> Ansible
  6. *.retry
  7. # Linux Home files
  8. *~
  9. # Linux trash folder which might appear on any partition or disk
  10. .Trash-*
  11. # temporary files which can be created if a process still has a handle open of a deleted file
  12. .fuse_hidden*
  13. # .nfs files are created when an open file is removed but is still being accessed
  14. .nfs*
  15. # KDE directory preferences
  16. .directory
  17. # Swap, temporary files
  18. *.swp
  19. # Credentials files
  20. *.creds
  21. # Node artifact files
  22. node_modules/
  23. dist/
  24. # Compiled Java class files
  25. *.class
  26. # Compiled Python bytecode
  27. *.py[cod]
  28. # Log files
  29. *.log
  30. # Package files
  31. *.jar
  32. # Maven
  33. target/
  34. dist/
  35. # JetBrains IDE
  36. .idea/
  37. # Unit test reports
  38. TEST*.xml
  39. # Generated by MacOS
  40. .DS_Store
  41. # Generated by Windows
  42. Thumbs.db
  43. # Applications
  44. *.app
  45. *.exe
  46. *.war
  47. # Large media files
  48. *.mp4
  49. *.tiff
  50. *.avi
  51. *.flv
  52. *.mov
  53. *.wmv