.gitignore 582 B

123456789101112131415161718192021222324252627282930313233
  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. *.log
  25. *.png
  26. # Custom branding assets (user uploads)
  27. static/custom/*
  28. !static/custom/.gitkeep
  29. .claude/
  30. static/dist/
  31. # Update trigger file (created by container, consumed by host watcher)
  32. .update-trigger