@@ -17,6 +17,10 @@ npm install -D @openworkflow/cli
1717pnpm add -D @openworkflow/cli
1818```
1919
20+ ``` bash bun
21+ bun add -D @openworkflow/cli
22+ ```
23+
2024</CodeGroup >
2125
2226## Commands
@@ -34,6 +38,10 @@ npx @openworkflow/cli init
3438pnpx @openworkflow/cli init
3539```
3640
41+ ``` bash bun
42+ bunx @openworkflow/cli init
43+ ```
44+
3745</CodeGroup >
3846
3947This interactive command:
@@ -59,6 +67,10 @@ npx @openworkflow/cli worker start
5967pnpx @openworkflow/cli worker start
6068```
6169
70+ ``` bash bun
71+ bunx @openworkflow/cli worker start
72+ ```
73+
6274</CodeGroup >
6375
6476Options:
@@ -77,6 +89,11 @@ npx @openworkflow/cli worker start --concurrency 4
7789pnpx @openworkflow/cli worker start --concurrency 4
7890```
7991
92+ ``` bash bun
93+ # Run with 4 concurrent workflows
94+ bunx @openworkflow/cli worker start --concurrency 4
95+ ```
96+
8097</CodeGroup >
8198
8299The worker:
@@ -100,6 +117,10 @@ npx @openworkflow/cli dashboard
100117pnpx @openworkflow/cli dashboard
101118```
102119
120+ ``` bash bun
121+ bunx @openworkflow/cli dashboard
122+ ```
123+
103124</CodeGroup >
104125
105126This launches the OpenWorkflow dashboard on ` http://localhost:3000 ` . See
@@ -118,6 +139,10 @@ npx @openworkflow/cli doctor
118139pnpx @openworkflow/cli doctor
119140```
120141
142+ ``` bash bun
143+ bunx @openworkflow/cli doctor
144+ ```
145+
121146</CodeGroup >
122147
123148This command checks:
@@ -164,6 +189,10 @@ npx @openworkflow/cli --version
164189pnpx @openworkflow/cli --version
165190```
166191
192+ ``` bash bun
193+ bunx @openworkflow/cli --version
194+ ```
195+
167196</CodeGroup >
168197
169198### ` --help `
@@ -183,6 +212,12 @@ pnpx @openworkflow/cli worker --help
183212pnpx @openworkflow/cli worker start --help
184213```
185214
215+ ``` bash bun
216+ bunx @openworkflow/cli --help
217+ bunx @openworkflow/cli worker --help
218+ bunx @openworkflow/cli worker start --help
219+ ```
220+
186221</CodeGroup >
187222
188223## Environment Variables
0 commit comments