You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 815B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # ---- Gradle
  2. build/
  3. .gradle/
  4. out/
  5. # ---- Maven (in integration tests)
  6. target/
  7. # ---- IntelliJ IDEA
  8. *.iws
  9. *.iml
  10. *.ipr
  11. .idea/
  12. out/
  13. # Directories generated on build on Windows
  14. bin/
  15. # npm logs
  16. npm-debug.log*
  17. npm.tar.gz
  18. yarn-debug.log*
  19. yarn-error.log*
  20. # ---- Eclipse
  21. .classpath
  22. .project
  23. .settings
  24. .externalToolBuilders
  25. # ---- Mac OS X
  26. .DS_Store
  27. Icon?
  28. # Thumbnails
  29. ._*
  30. # Files that might appear on external disk
  31. .Spotlight-V100
  32. .Trashes
  33. # ---- Windows
  34. # Windows image file caches
  35. Thumbs.db
  36. # Folder config file
  37. Desktop.ini
  38. # ---- frontend
  39. node/
  40. node_modules/
  41. .vscode/
  42. # ---- SonarQube
  43. .sonar/
  44. # scripts patches, they are local to each developer
  45. scripts/patches/*.*
  46. scripts/patches/*license*.txt
  47. !scripts/patches/debug_ce.sh
  48. !scripts/patches/debug_web.sh
  49. !scripts/patches/mysql.sh
  50. !scripts/patches/postgres.sh