Develop an application in Langflow
Follow this guide to learn how to build an application using Langflow. You'll learn how to set up a project directory, manage dependencies, configure environment variables, and package your Langflow application in a Docker image.
To deploy your application to Docker or Kubernetes, see Deployment.
Create a project directory
Create a project directory similar to this one.
_10LANGFLOW-APPLICATION/_10├── flows/_10│ ├── flow1.json_10│ └── flow2.json_10├── langflow-config-dir/_10├── docker.env_10├── Dockerfile_10├── README.md
The /flows
folder holds the flows you want to host.
The langflow-config-dir
is referenced in the Dockerfile as the location for Langflow's configuration files, database, and logs. For more information, see Environment variables.
The docker.env
file is copied to the Docker image as a .env
file in the container root. This file controls Langflow's behavior, holds secrets, and configures runtime settings like authentication, database storage, API keys, and server configurations.
The Dockerfile
controls how your image is built. This file copies your flows and docker.env
files to your image.
Package management
The base Docker image includes the Langflow core dependencies by using langflowai/langflow:latest
as the parent image.
If your application requires additional dependencies, create a pyproject.toml
file and add the dependencies to the file. For more information, see Install custom dependencies.
To deploy the application with the additional dependencies to Docker, copy the pyproject.toml
and uv.lock
files to the Docker image by adding the following to the Dockerfile.
_10COPY pyproject.toml uv.lock /app/
Environment variables
The docker.env
file is a .env
file loaded into your Docker image.
The following example docker.env
file defines auto-login behavior and which port to expose. Your environment may vary. For more information, see Environment variables.
_10LANGFLOW_AUTO_LOGIN=true_10LANGFLOW_SAVE_DB_IN_CONFIG_DIR=true_10LANGFLOW_BASE_URL=http://0.0.0.0:7860_10OPENAI_API_KEY=sk-...
This example uses Langflow's default SQLite database for storage, and configures no authentication.
To modify Langflow's default memory behavior, see Memory.
To add authentication to your server, see Authentication.
Add flows and components
Add your flow's .JSON
files to the /flows
folder.
To export your flows from Langflow, see Flows.
Optionally, add any custom components to a /components
folder, and specify the path in your docker.env
.
Package your Langflow project in a Docker image
- Add the following commands to your Dockerfile.
_26# Use the latest version of langflow_26FROM langflowai/langflow:latest_26_26# Create accessible folders and set the working directory in the container_26RUN mkdir /app/flows_26RUN mkdir /app/langflow-config-dir_26WORKDIR /app_26_26# Copy the flows, optional components, and langflow-config-dir folders to the container_26COPY flows /app/flows_26COPY components /app/components_26COPY langflow-config-dir /app/langflow-config-dir_26_26# copy docker.env file_26COPY docker.env /app/.env_26_26# Set environment variables_26ENV PYTHONPATH=/app_26ENV LANGFLOW_LOAD_FLOWS_PATH=/app/flows_26ENV LANGFLOW_CONFIG_DIR=/app/langflow-config-dir_26ENV LANGFLOW_COMPONENTS_PATH=/app/components_26ENV LANGFLOW_LOG_ENV=container_26_26# Command to run the server_26EXPOSE 7860_26CMD ["langflow", "run", "--backend-only", "--env-file","/app/.env","--host", "0.0.0.0", "--port", "7860"]
The environment variables set in the Dockerfile specify resource paths and allow Langflow to access them. Values from docker.env
override the values set in the Dockerfile. Additionally, logging behavior is set here with ENV LANGFLOW_LOG_ENV=container
for serialized JSON to stdout
, for tracking your application's behavior in a containerized environment. For more information on configuring logs, see Logging.
Optionally, remove the --backend-only
flag from the startup command to start Langflow with the frontend enabled.
For more on --backend-only
mode and the Langflow Docker image, see Docker.
- Save your Dockerfile.
- Build the Docker image:
_10docker build -t langflow-pokedex:1.2.0 .
- Run the Docker container:
_10docker run -p 7860:7860 langflow-pokedex:1.2.0
For instructions on building and pushing your image to Docker Hub, see Docker.
- Confirm the server is serving your flows.
Open a
.JSON
file in your/flows
folder and find the file'sid
value. It's the first value in the flow document.
_10"id": "e4167236-938f-4aca-845b-21de3f399858",
- Add the file's
id
value as theflow-id
to a POST request to the/run
endpoint.
This command also uses a custom session_id
value of charizard_test_request
.
By default, session IDs use the flow-id
value.
A custom session ID maintains a unique conversation thread, which keeps LLM contexts clean and can make debugging easier.
For more information, see Session ID.
_10curl --request POST \_10 --url 'http://127.0.0.1:7860/api/v1/run/e4167236-938f-4aca-845b-21de3f399858?stream=false' \_10 --header 'Content-Type: application/json' \_10 --data '{_10 "input_value": "Tell me about Charizard please",_10 "output_type": "chat",_10 "input_type": "chat",_10 "session_id": "charizard_test_request"_10}'
If the flow streams the result back to you, your flow is being served, and can be consumed from a front-end application by submitting POST requests to this endpoint.
The test application returns a large amount of text, so the example command used ?stream=true
. If you prefer, set ?stream=false
to use batching. For more information, see the API examples.
Deploy to Docker Hub and Kubernetes
For instructions on building and pushing your image to Docker Hub, see Docker.
To deploy your application to Kubernetes, see Kubernetes.