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
<h2class="text-2xl font-bold mt-0 border-none!">Time to build!</h2>
11
-
<p>Let's build an iApp that can process protected data in a secure environment using the <ahref="../../tools/iapp-generator"target="_blank">iExec iApp generator tool</a>. This tool helps you create, test and deploy iApps with just a few commands.</p>
11
+
<p>Let's build an iApp that can process protected data in a secure environment using the <ahref="../../build-iapp/iapp-generator"target="_blank">iExec iApp generator tool</a>. This tool helps you create, test and deploy iApps with just a few commands.</p>
12
12
</div>
13
13
14
14
If you wanna explore and deep dive in the CLI. You can check the
@@ -56,33 +56,49 @@ Here are some popular use cases:
56
56
Send privacy-preserving emails to registered Ethereum account holders without
<pclass="m-0!">These are just a few examples, the possibilities are endless. Want to explore iApp Generator? Check out our <ahref="../../tools/iapp-generator"target="_blank">documentation</a> and see what you can build!</p>
75
+
<pclass="m-0!">These are just a few examples, the possibilities are endless. Want to explore iApp Generator? Check out our <ahref="../../build-iapp/iapp-generator"target="_blank">documentation</a> and see what you can build!</p>
76
76
</div>
77
77
78
78
## 💾 Installation (win / mac / linux)
79
79
80
80
First, you need to install the `iapp` package. Open your terminal and run:
81
81
82
-
```sh
82
+
::: code-group
83
+
84
+
```sh [npm]
83
85
npm i -g @iexec/iapp
84
86
```
85
87
88
+
```sh [yarn]
89
+
yarn global add @iexec/iapp
90
+
```
91
+
92
+
```sh [pnpm]
93
+
pnpm add -g @iexec/iapp
94
+
```
95
+
96
+
```sh [bun]
97
+
bun add -g @iexec/iapp
98
+
```
99
+
100
+
:::
101
+
86
102
You can check if the installation was successful by running:
0 commit comments