make actions
actions 包含了单元测试和集成测试。
make test-unit
make test-integration
make test-all
# 启动所有存储服务
make docker-up
# 启动 ollama(用于 embedding),Linux 下需要先安装 ollama: curl -fsSL https://ollama.com/install.sh | sh
# 如果没启动(Linux下安装脚本自动使用systemd启动了)
ollama serve
# 下载 embedding model
ollama pull bge-m3# 关停所有存储服务
make docker-down# 删除存储并重启
make docker-clean-restart