1
0

.gitignore 598 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Ignore editor and IDE settings
  2. .idea/
  3. .vscode/
  4. .cursor/
  5. .specify/
  6. .claude/
  7. .cache/
  8. .sync*
  9. # Ignore log files
  10. *.log
  11. # Ignore temporary files
  12. tmp/
  13. *.tar.gz
  14. # Ignore build and distribution directories
  15. backup/
  16. bin/
  17. x-ui/
  18. dist/
  19. !internal/web/dist/
  20. internal/web/dist/*
  21. !internal/web/dist/.gitkeep
  22. release/
  23. node_modules/
  24. # Ignore compiled binaries
  25. main
  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. system_metrics.gob
  35. *.dump
  36. # Ignore Docker specific files
  37. docker-compose.override.yml
  38. # Ignore .env (Environment Variables) file
  39. .env