.gitignore 582 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. !web/dist/
  17. web/dist/*
  18. !web/dist/.gitkeep
  19. release/
  20. node_modules/
  21. # Ignore compiled binaries
  22. main
  23. # Ignore script and executable files
  24. /release.sh
  25. /x-ui
  26. # Ignore OS specific files
  27. .DS_Store
  28. Thumbs.db
  29. # Ignore Go build files
  30. *.exe
  31. x-ui.db
  32. x-ui.db-shm
  33. x-ui.db-wal
  34. *.dump
  35. # Ignore Docker specific files
  36. docker-compose.override.yml
  37. # Ignore .env (Environment Variables) file
  38. .env