Skip to content

Commit 1fdf875

Browse files
authored
Rename executor node references in README
Updated README to reflect changes in executor node naming and instructions.
1 parent 6117ec4 commit 1fdf875

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ cd node
1515

1616
This script will:
1717
- Check for dependencies
18-
- Install Langflow if needed
1918
- Start the executor node with auto-reload enabled
2019

2120
**Manual startup:**
@@ -44,14 +43,14 @@ cd /path/to/droqflow
4443

4544
# Option 2: Build manually from repo root
4645
cd /path/to/droqflow
47-
docker build -f node/Dockerfile -t langflow-executor-node:latest .
46+
docker build -f node/Dockerfile -t lfx-runtime-executor-node:latest .
4847

4948
# Option 3: Build from node directory (use parent as context)
5049
cd /path/to/droqflow/node
51-
docker build -f Dockerfile -t langflow-executor-node:latest ..
50+
docker build -f Dockerfile -t lfx-runtime-executor-node:latest ..
5251

5352
# Run the container
54-
docker run -p 8000:8000 langflow-executor-node:latest
53+
docker run -p 8000:8000 lfx-runtime-executor-node:latest
5554
```
5655

5756
## API Endpoints
@@ -107,15 +106,15 @@ Service information.
107106

108107
## Integration with Main Backend
109108

110-
The main Langflow backend calls this executor node from `Component._get_output_result()` when components need to execute. All components are now routed to the executor by default.
109+
The main droqflow backend calls this executor node from `Component._get_output_result()` when components need to execute. All components are now routed to the executor by default.
111110

112111
## Docker Build
113112

114113
The Dockerfile is designed to be built from the repository root:
115114

116115
```bash
117116
# From repo root
118-
docker build -f node/Dockerfile -t langflow-executor-node:latest .
117+
docker build -f node/Dockerfile -t lfx-runtime-executor-node:latest .
119118
```
120119

121120
This allows the Dockerfile to access both:

0 commit comments

Comments
 (0)