Skip to content

Commit a0c99d4

Browse files
committed
docs: update links in iApp guides for consistency and clarity
1 parent 16c73f2 commit a0c99d4

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

src/guides/build-iapp/advanced/build-your-first-sgx-iapp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ may need to use some confidential data to get the full potential of the
553553
**Confidential Computing** paradigm. Check out next chapters to see how:
554554

555555
- [Access confidential assets from your iApp](access-confidential-assets.md)
556-
- [Protect the result](./protect-the-result.md)
556+
- [Protect the result](/guides/build-iapp/advanced/protect-the-result.md)
557557

558558
<script setup>
559559
import { computed } from 'vue';

src/guides/build-iapp/advanced/build-your-first-tdx-iapp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ need to be changed compared to the usual SGX workflow: `chain.json` and
6464

6565
iApps using Intel TDX technology follow the same format as non-TEE applications;
6666
follow the instructions on
67-
[Build your first application](./build-your-first-sgx-iapp) to create and
68-
Dockerize your iApp.
67+
[Build your first application](/guides/build-iapp/advanced/build-your-first-sgx-iapp)
68+
to create and Dockerize your iApp.
6969

7070
After this step, the Docker image of your iApp should be published on Docker Hub
7171
(e.g. `<docker-hub-user>/hello-world:1.0.0`).
@@ -115,8 +115,8 @@ Your `iexec.json` should now look like this example:
115115

116116
::: info
117117

118-
See [Deploy your iApp on iExec](../deploy-&-run.md) to retrieve your image
119-
`<checksum>`.
118+
See [Deploy your iApp on iExec](/guides/build-iapp/deploy-&-run.md) to retrieve
119+
your image `<checksum>`.
120120

121121
:::
122122

src/guides/build-iapp/advanced/protect-the-result.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ encrypting results.
1717
::: warning
1818

1919
Before going any further, make sure you managed to
20-
[Build your first application with Scone framework](./build-your-first-sgx-iapp.md).
20+
[Build your first application with Scone framework](/guides/build-iapp/advanced/build-your-first-sgx-iapp.md).
2121

2222
:::
2323

@@ -39,7 +39,7 @@ feature.
3939
:::
4040

4141
Assuming your application is deployed (if not please check how to do it
42-
[with Scone](./build-your-first-sgx-iapp.md#deploy-the-tee-app-on-iexec)),
42+
[with Scone](/guides/build-iapp/advanced/build-your-first-sgx-iapp.md#deploy-the-tee-app-on-iexec)),
4343
before triggering an execution you need to generate an RSA key-pair, then push
4444
the public key to the [Secret Management Service](/protocol/tee/intel-sgx). The
4545
latter, in turn, will provide it, at runtime, to the enclave running your
@@ -48,7 +48,8 @@ Confidential Computing application.
4848
To generate the key-pair, go to `~/iexec-projects` and use the following SDK
4949
command:
5050

51-
Make sure your [`chain.json`](./build-your-first-sgx-iapp.md#update-chain-json)
51+
Make sure your
52+
[`chain.json`](/guides/build-iapp/advanced/build-your-first-sgx-iapp.md#update-chain-json)
5253
content is correct.
5354

5455
```bash

src/guides/build-iapp/advanced/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ You are now familiar with the following key iExec concepts for developers:
8080

8181
Continue with these guides:
8282

83-
- [Learn how to build your first condiential application running on iExec](./build-your-first-sgx-iapp.md)
83+
- [Learn how to build your first condiential application running on iExec](/guides/build-iapp/advanced/build-your-first-sgx-iapp.md)
8484

8585
<script setup>
8686
import { computed } from 'vue';

src/guides/build-iapp/build-&-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ The CLI will build a Docker image, run your app, and show you the results:
209209
## Next Steps
210210

211211
- When everything is ready
212-
[deploy and run your iApp](../use-iapp/run-iapp-with-ProtectedData)
212+
[deploy and run your iApp](/guides/use-iapp/run-iapp-with-ProtectedData)
213213

214214
<script setup>
215215
import CLIDemo from '@/components/CLIDemo.vue';

0 commit comments

Comments
 (0)