From 502b520782ff8764372e01e8c9718c9dbdb39ff3 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 14 Sep 2023 17:18:22 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(render.yaml):=20add=20LANG?= =?UTF-8?q?FLOW=5FDATABASE=5FURL=20environment=20variable=20with=20sqlite?= =?UTF-8?q?=20database=20path=20to=20improve=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The LANGFLOW_DATABASE_URL environment variable is added with the value `sqlite:////home/user/.cache/langflow/langflow.db` to specify the path to the SQLite database file for the Langflow service. This improves the configuration by providing a specific location for the database file. --- render.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/render.yaml b/render.yaml index 3e02fcd4d..bd364a72b 100644 --- a/render.yaml +++ b/render.yaml @@ -8,6 +8,9 @@ services: branch: main healthCheckPath: /health autoDeploy: false + envVars: + - key: LANGFLOW_DATABASE_URL + - value: sqlite:////home/user/.cache/langflow/langflow.db disk: name: langflow-data mountPath: /home/user/.cache/langflow