From cb1ab1a79e37bd6ef4189f2dff67a2b11e4a5027 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 5 Jul 2023 12:00:42 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(.env.example):=20add=20exam?= =?UTF-8?q?ple=20.env=20file=20with=20langflow=5Fdatabase=5Furl=20set=20to?= =?UTF-8?q?=20sqlite=20database=20URL=20The=20.env.example=20file=20is=20a?= =?UTF-8?q?dded=20to=20provide=20an=20example=20of=20how=20to=20configure?= =?UTF-8?q?=20the=20.env=20file.=20It=20includes=20a=20commented=20out=20e?= =?UTF-8?q?xample=20of=20a=20PostgreSQL=20database=20URL=20and=20a=20new?= =?UTF-8?q?=20line=20is=20added=20with=20the=20langflow=5Fdatabase=5Furl?= =?UTF-8?q?=20set=20to=20a=20SQLite=20database=20URL.=20This=20allows=20us?= =?UTF-8?q?ers=20to=20easily=20copy=20the=20file=20to=20.env=20and=20modif?= =?UTF-8?q?y=20the=20values=20according=20to=20their=20needs.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 000000000..22ac47a6f --- /dev/null +++ b/.env.example @@ -0,0 +1,8 @@ +# Description: Example of .env file +# Usage: Copy this file to .env and change the values +# according to your needs +# Do not commit .env file to git +# Do not change .env.example file + +# langflow_database_url=postgresql://postgres:postgres@localhost:5432/langflow +langflow_database_url=sqlite:///./langflow.db \ No newline at end of file