1
0

.gitignore 634 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. gcode_files/
  2. __pycache__/
  3. *.pyc
  4. *.pyo
  5. .env
  6. .idea
  7. # Ignore state and data JSON files, but not package.json
  8. state.json
  9. settings.json
  10. playlists.json
  11. metadata_cache.json
  12. tsconfig.json
  13. *.jsonl
  14. !package.json
  15. !package-lock.json
  16. # Touch app config files
  17. dune-weaver-touch/*.json
  18. .venv/
  19. patterns/cached_svg/
  20. patterns/cached_images/custom_*
  21. # macOS files
  22. .DS_Store
  23. # Node.js and build files
  24. node_modules/
  25. .vite/
  26. *.log
  27. *.png
  28. # Custom branding assets (user uploads)
  29. static/custom/*
  30. !static/custom/.gitkeep
  31. .claude/
  32. static/dist/
  33. .planning/
  34. .coverage
  35. # Frontend test artifacts
  36. frontend/coverage/
  37. frontend/playwright-report/
  38. frontend/test-results/