.gitignore 587 B

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