.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # Build directories
  2. build/
  3. cmake-build-*/
  4. # Binary files
  5. *.o
  6. *.so
  7. *.a
  8. *.exe
  9. *.out
  10. stable-diffusion-rest-server
  11. sd
  12. # Logs
  13. *.log
  14. logs/
  15. /var/log/
  16. # Queue and output directories (data)
  17. queue/
  18. output/
  19. /var/lib/stable-diffusion-rest/
  20. # Node modules and WebUI build artifacts
  21. webui/node_modules/
  22. webui/.next/
  23. webui/out/
  24. webui/.env.local
  25. webui/.env.*.local
  26. webui/.vercel
  27. webui/public/version.json
  28. # Allow webui source files (they were being ignored by broad patterns above)
  29. !webui/app/
  30. !webui/components/
  31. !webui/lib/
  32. !webui/contexts/
  33. !webui/app/**/
  34. !webui/components/**/
  35. !webui/lib/**/
  36. !webui/contexts/**/
  37. !webui/*.json
  38. !webui/*.config.*
  39. !webui/*.js
  40. !webui/*.ts
  41. !webui/*.tsx
  42. !webui/*.css
  43. !webui/globals.css
  44. # Model files (too large for git)
  45. models/
  46. *.safetensors
  47. *.ckpt
  48. *.pt
  49. *.pth
  50. *.gguf
  51. *.bin
  52. # IDE and editor files
  53. .vscode/
  54. .zed/
  55. .idea/
  56. *.swp
  57. *.swo
  58. *~
  59. .DS_Store
  60. opencode.json
  61. # CMake files
  62. CMakeCache.txt
  63. CMakeFiles/
  64. cmake_install.cmake
  65. Makefile
  66. *.cmake
  67. !CMakeLists.txt
  68. !cmake/*.cmake
  69. # Install script generated files
  70. *.service
  71. !*.service.template
  72. # Temporary files
  73. *.tmp
  74. .cache/
  75. tmp/
  76. # Test files
  77. test_results.txt
  78. # Documentation (keep in repo)
  79. !README.md
  80. !*.md
  81. .aider*
  82. crush.json