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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. # Directories generated on build on Windows
  16. bin/
  17. # npm logs
  18. npm-debug.log*
  19. npm.tar.gz
  20. yarn-debug.log*
  21. yarn-error.log*
  22. # ---- Eclipse
  23. .classpath
  24. .project
  25. .settings
  26. .externalToolBuilders
  27. # ---- Mac OS X
  28. .DS_Store
  29. Icon?
  30. # Thumbnails
  31. ._*
  32. # Files that might appear on external disk
  33. .Spotlight-V100
  34. .Trashes
  35. # ---- Windows
  36. # Windows image file caches
  37. Thumbs.db
  38. # Folder config file
  39. Desktop.ini
  40. # ---- frontend
  41. node/
  42. node_modules/
  43. .vscode/
  44. # ---- SonarQube
  45. .sonar/
  46. # scripts patches, they are local to each developer
  47. scripts/patches/*.*
  48. scripts/patches/*license*.txt
  49. !scripts/patches/debug_ce.sh
  50. !scripts/patches/debug_web.sh
  51. !scripts/patches/mysql.sh
  52. !scripts/patches/postgres.sh