langflow/docs/docs/Configuration/configuration-auto-saving.md
Mendon Kissling c7f688ceda
Docs: update screenshots with new UI changes (#4579)
* remove-images

* logs-pane

* logs

* more-logs

* langsmith-langwatch

* guides-folder

* quickstart

* follow-image

* getting-started-folder

* share-store-change

* workspace-old-images

* component-folder

* deployment-folder

* configuration-folder

* delete-venv

* favicon-footer-header

* favicon-bw-and-replace-gif

* docs: Update prerequisites and terminology in Getting Started and Workspace documentation

* docs: Update terminology from "New Project" to "New Flow" in starter project documentation

* Apply suggestions from code review

Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com>

* docs: Update terminology from "project" to "flow" in starter project documentation

* docs: Update terminology from "project" to "flow" in starter project documentation

---------

Co-authored-by: KimberlyFields <46325568+KimberlyFields@users.noreply.github.com>
2024-11-14 00:58:01 +00:00

1.3 KiB

title sidebar_position slug
Auto-saving 6 /configuration-auto-save

Langflow supports both manual and auto-saving functionality.

Auto-saving

When Langflow is in auto-saving mode, all changes are saved automatically. Auto-save progress is indicated in the left side of the top bar.

  • When a flow is being saved, a loading icon indicates that the flow is being saved in the database.

  • If you try to exit the flow page before auto-save completes, you are prompted to confirm you want to exit before the flow has saved.

  • When the flow has successfully saved, click Exit.

Disable auto-saving

To disable auto-saving,

  1. Set an environment variable in your .env file.
LANGFLOW_AUTO_SAVING=false
  1. Start Langflow with the values from your .env file.
python -m langflow run --env-file .env

Alternatively, disable auto-saving by passing the --no-auto-saving flag at startup.

python -m langflow --no-auto-saving

Save a flow manually

When auto-saving is disabled, you will need to manually save your flow when making changes.

To manually save your flow, click the Save button or enter Ctrl+S or Command+S.

If you try to exit after making changes and not saving, a confirmation dialog appears.