LangSmith 安装说明(Docker Compose)

此方式不适合生产使用,因为数据库不是持久性的,并且环境变量也不是保密的。对于生产就绪的设置,请遵循自托管指南或考虑使用 Langfuse Cloud 由 Langfuse 团队维护。

官方文档:https://langfuse.com/docs/deployment/local

快速启动

# Clone the Langfuse repository
git clone https://github.com/langfuse/langfuse.git
cd langfuse

# Start the server and database
docker compose up

更新 Langfuse

Docker 具有强大的缓存功能。要获取最新的 Langfuse 容器,您需要运行 docker-compose pull. 否则,Docker 将使用 Langfuse 容器的缓存版本。

# Navigate to the Langfuse directory
cd langfuse

# Stop the server and database
docker compose down

# Fetch the latest changes
git pull
docker-compose pull

# Restart the server and database
docker compose up

设置开发环境

参考 CONTRIBUTING.md 有关如何设置开发环境的详细说明。

作者:Jeebiz  创建时间:2024-03-22 00:02
最后编辑:Jeebiz  更新时间:2024-03-22 00:05