.gitignore 591 B

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