| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- .Python
- *.egg-info/
- dist/
- build/
- # Virtual environments
- venv/
- .venv/
- env/
- ENV/
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- .claude/
- # Testing
- .pytest_cache/
- .coverage
- htmlcov/
- # Misc
- .DS_Store
- .env
- *.log
- # Cache and output
- .cache/
- .trace/
- .trace_test/
- output/
- examples/**/output*/
- # Frontend
- node_modules/
- frontend/react-template/dist/
- frontend/react-template/node_modules/
- yarn.lock
- # Database
- *.db
- *.db-shm
- *.db-wal
- knowhub/milvus_data/
- # Git
- .git/
- .gitignore
- # Deploy
- deploy/
- DEPLOY.md
|