📝 docs(.env.example): add example .env file with langflow_database_url set to sqlite database URL

The .env.example file is added to provide an example of how to configure the .env file. It includes a commented out example of a PostgreSQL database URL and a new line is added with the langflow_database_url set to a SQLite database URL. This allows users to easily copy the file to .env and modify the values according to their needs.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-05 12:00:42 -03:00
commit cb1ab1a79e

8
.env.example Normal file
View file

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