Skip to content

Commit 7348db2

Browse files
committed
docs: Add prerequisites section to 'Run iApp without ProtectedData' guide
- Included a new section outlining the prerequisites for using the iApp, specifically the installation of the iExec SDK. - Provided installation commands for various package managers (npm, yarn, pnpm, bun) to facilitate user setup.
1 parent 00fe80a commit 7348db2

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/guides/use-iapp/run-iapp-without-ProtectedData.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,30 @@ iApp's behavior for each specific run. These inputs include Arguments, Input
1414
Files, and Secrets, which allow you to provide additional data, parameters, and
1515
configuration to enable processing and customize functionality.
1616

17+
## Prerequisites
18+
19+
Before you begin, make sure you have the iExec SDK installed.
20+
21+
::: code-group
22+
23+
```sh [npm]
24+
npm install -g iexec
25+
```
26+
27+
```sh [yarn]
28+
yarn global add iexec
29+
```
30+
31+
```sh [pnpm]
32+
pnpm add -g iexec
33+
```
34+
35+
```sh [bun]
36+
bun add -g iexec
37+
```
38+
39+
:::
40+
1741
## Adding Command-Line Arguments
1842

1943
Command-line arguments are passed as a string to the iApp and are visible on the

0 commit comments

Comments
 (0)