.dockerignore 536 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. *.egg-info/
  8. dist/
  9. build/
  10. # Virtual environments
  11. venv/
  12. .venv/
  13. env/
  14. ENV/
  15. # IDE
  16. .idea/
  17. .vscode/
  18. *.swp
  19. *.swo
  20. .claude/
  21. # Testing
  22. .pytest_cache/
  23. .coverage
  24. htmlcov/
  25. # Misc
  26. .DS_Store
  27. .env
  28. *.log
  29. # Cache and output
  30. .cache/
  31. .trace/
  32. .trace_test/
  33. output/
  34. examples/**/output*/
  35. # Frontend
  36. node_modules/
  37. frontend/react-template/dist/
  38. frontend/react-template/node_modules/
  39. yarn.lock
  40. # Database
  41. *.db
  42. *.db-shm
  43. *.db-wal
  44. knowhub/milvus_data/
  45. # Git
  46. .git/
  47. .gitignore
  48. # Deploy
  49. deploy/
  50. DEPLOY.md