Skip to content

Commit 96f4d08

Browse files
feat: update readmes for bun installation (#73)
1 parent e9b7b69 commit 96f4d08

File tree

2 files changed

+13
-2
lines changed
  • cmd/creinit/template/workflow

2 files changed

+13
-2
lines changed

cmd/creinit/template/workflow/typescriptPorExampleDev/README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,17 @@ CRE_ETH_PRIVATE_KEY=000000000000000000000000000000000000000000000000000000000000
2626
```
2727

2828
## 3. Install dependencies
29+
30+
If `bun` is not already installed, see https://bun.com/docs/installation for installing in your environment.
31+
32+
```bash
33+
cd <workflow-name> && bun install
2934
```
30-
cd workflowName && bun install
35+
36+
Example: For a workflow directory named `workflow01` the command would be:
37+
38+
```bash
39+
cd workflow01 && bun install
3140
```
3241

3342
## 4. Configure RPC endpoints

cmd/creinit/template/workflow/typescriptSimpleExample/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ local-simulation:
2626
2727
## 2. Install dependencies
2828
29+
If `bun` is not already installed, see https://bun.com/docs/installation for installing in your environment.
30+
2931
```bash
3032
cd <workflow-name> && bun install
3133
```
3234

33-
Example: For workflow named `hello-world` the command would be:
35+
Example: For a workflow directory named `hello-world` the command would be:
3436

3537
```bash
3638
cd hello-world && bun install

0 commit comments

Comments
 (0)