.gitignore 454 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Ignore editor and IDE settings
  2. .idea/
  3. .vscode/
  4. .cache/
  5. .sync*
  6. # Ignore log files
  7. *.log
  8. # Ignore temporary files
  9. tmp/
  10. *.tar.gz
  11. # Ignore build and distribution directories
  12. backup/
  13. bin/
  14. dist/
  15. release/
  16. node_modules/
  17. # Ignore compiled binaries
  18. main
  19. # Ignore script and executable files
  20. /release.sh
  21. /x-ui
  22. # Ignore OS specific files
  23. .DS_Store
  24. Thumbs.db
  25. # Ignore Go specific files
  26. *.exe
  27. *.exe~
  28. # Ignore Docker specific files
  29. docker-compose.override.yml