📝 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:
parent
8cee7e701f
commit
cb1ab1a79e
1 changed files with 8 additions and 0 deletions
8
.env.example
Normal file
8
.env.example
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue