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.
8 lines
No EOL
329 B
Text
8 lines
No EOL
329 B
Text
# 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 |