You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,3 +83,18 @@ The following will be passed in `context.appConfig`:
83
83
}
84
84
```
85
85
86
+
### HyperFlow server
87
+
The HyperFlow engine can be started in a server mode using command: ```hflow start-server```
88
+
89
+
If succesfully started, the server prints its URL:
90
+
```
91
+
HyperFlow server started at http://localhost:38775
92
+
```
93
+
94
+
Workflows can be run through the HyperFlow server as follows:
95
+
96
+
```
97
+
hflow run --submit=<hyperflow_server_url> <workflow_dir>
98
+
```
99
+
100
+
Currently `<workflow_dir>` must be a local directory accessbile by the server. This allows running multiple workflows (concurrently) using the same instance of the HyperFlow engine.
0 commit comments