.gitignore 620 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. playlists.json
  10. metadata_cache.json
  11. tsconfig.json
  12. *.jsonl
  13. !package.json
  14. !package-lock.json
  15. # Touch app config files
  16. dune-weaver-touch/*.json
  17. .venv/
  18. patterns/cached_svg/
  19. patterns/cached_images/custom_*
  20. # macOS files
  21. .DS_Store
  22. # Node.js and build files
  23. node_modules/
  24. .vite/
  25. *.log
  26. *.png
  27. # Custom branding assets (user uploads)
  28. static/custom/*
  29. !static/custom/.gitkeep
  30. .claude/
  31. static/dist/
  32. .planning/
  33. .coverage
  34. # Frontend test artifacts
  35. frontend/coverage/
  36. frontend/playwright-report/
  37. frontend/test-results/