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 878B

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