From b7861ac77f3d1cfaae00c409791d998563bfe38f Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 7 Aug 2023 10:24:28 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(alembic.ini):=20update=20s?= =?UTF-8?q?qlalchemy.url=20to=20dynamically=20set=20the=20path=20to=20the?= =?UTF-8?q?=20database=20in=20the=20root=20of=20the=20project?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/alembic.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/langflow/alembic.ini b/src/backend/langflow/alembic.ini index 0227ea4f2..379661422 100644 --- a/src/backend/langflow/alembic.ini +++ b/src/backend/langflow/alembic.ini @@ -60,10 +60,10 @@ version_path_separator = os # Use os.pathsep. Default configuration used for ne # are written from script.py.mako # output_encoding = utf-8 -# This is a placeholder to run the first migration +# This is the path to the db in the root of the project. # When the user runs the Langflow the database url will -# be set dinamically -sqlalchemy.url = sqlite:///langflow.db +# be set dinamically. +sqlalchemy.url = sqlite:///../../../langflow.db [post_write_hooks]