.gitignore 545 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. # Virtual Environment
  8. .venv/
  9. venv/
  10. ENV/
  11. env/
  12. # IDE
  13. .vscode/
  14. .idea/
  15. *.swp
  16. *.swo
  17. *~
  18. .DS_Store
  19. # Environment variables
  20. .env
  21. .env.local
  22. .env.*.local
  23. # Logs
  24. logs/
  25. *.log
  26. *.log.*
  27. # Node modules (if any)
  28. node_modules/
  29. # System files
  30. Thumbs.db
  31. .DS_Store
  32. *.bak
  33. *.tmp
  34. # Python package files
  35. *.egg
  36. *.egg-info/
  37. dist/
  38. build/
  39. *.whl
  40. # Testing
  41. .pytest_cache/
  42. .coverage
  43. htmlcov/
  44. .tox/
  45. # Configuration overrides (keep templates but ignore local changes)
  46. video_config_local.yaml
  47. mcp_config_local.json