@cascade-flow/cli 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/cf-darwin-arm64 +0 -0
- package/dist/cf-darwin-x64 +0 -0
- package/dist/cf-linux-x64 +0 -0
- package/dist/cf-windows-x64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,23 @@ Command-line interface for queue-based workflow execution.
|
|
|
8
8
|
bun install
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## Bundled Binary
|
|
12
|
+
|
|
13
|
+
The CLI can be compiled into a standalone binary:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
bun run build:current # Build for current platform
|
|
17
|
+
bun run build # Build for all platforms
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**Runtime Requirement:** When using the bundled binary, `bun` must still be installed on the system for workflow step execution. This is because workflow steps are TypeScript files that need to be transpiled and executed at runtime.
|
|
21
|
+
|
|
22
|
+
```dockerfile
|
|
23
|
+
# Example Dockerfile
|
|
24
|
+
FROM oven/bun:1.2 AS runner
|
|
25
|
+
# bun is available from the base image
|
|
26
|
+
```
|
|
27
|
+
|
|
11
28
|
## Commands
|
|
12
29
|
|
|
13
30
|
### Worker
|
package/dist/cf-darwin-arm64
CHANGED
|
Binary file
|
package/dist/cf-darwin-x64
CHANGED
|
Binary file
|
package/dist/cf-linux-x64
CHANGED
|
Binary file
|
package/dist/cf-windows-x64.exe
CHANGED
|
Binary file
|