.gitignore 476 B

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