.gitignore 510 B

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