🔧 chore(alembic.ini): update sqlalchemy.url to dynamically set the path to the database in the root of the project

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-07 10:24:28 -03:00
commit b7861ac77f

View file

@ -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]