.gitignore 551 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # Build directories
  2. build/
  3. cmake-build-*/
  4. out/
  5. # IDE files
  6. .idea/
  7. .vscode/
  8. *.swp
  9. *.swo
  10. *~
  11. # Compiled files
  12. *.o
  13. *.a
  14. *.so
  15. *.dylib
  16. # CMake generated files
  17. CMakeFiles/
  18. CMakeCache.txt
  19. cmake_install.cmake
  20. compile_commands.json
  21. Makefile
  22. # Debug files
  23. *.dSYM/
  24. *.pdb
  25. # Test output
  26. Testing/
  27. CTestTestfile.cmake
  28. # External dependencies (fetched by CMake)
  29. _deps/
  30. build
  31. # OS files
  32. .DS_Store
  33. Thumbs.db
  34. # Runtime and local config
  35. .cache/
  36. .ralph-tui/
  37. config/
  38. data/
  39. tasks/
  40. scripts/
  41. smartbotic-server.json
  42. *.local.json
  43. # Node modules
  44. node_modules/
  45. webui/dist/