From fc73e2c4489ead300b739b90a11bd351d6d549ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Tue, 30 Jul 2024 15:22:03 +0200 Subject: [PATCH] fix: update render.yaml to being compatible with langflow 1.0 (#3071) --- render.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/render.yaml b/render.yaml index 69852cf40..a56b4c672 100644 --- a/render.yaml +++ b/render.yaml @@ -6,13 +6,18 @@ services: dockerfilePath: ./docker/render.Dockerfile repo: https://github.com/langflow-ai/langflow branch: main - healthCheckPath: /health + healthCheckPath: /health_check autoDeploy: false envVars: - key: LANGFLOW_DATABASE_URL - value: sqlite:////home/user/.cache/langflow/langflow.db + value: sqlite:////app/data/.cache/langflow/langflow.db - key: LANGFLOW_HOST value: 0.0.0.0 + - key: LANGFLOW_PORT + # default render port https://docs.render.com/web-services#port-binding + value: 10000 + - key: LANGFLOW_LOG_LEVEL + value: INFO disk: name: langflow-data - mountPath: /home/user/.cache/langflow + mountPath: /app/data