Skip to content

Commit d54e900

Browse files
committed
docs: update documentation links and import paths for consistency
1 parent f07498f commit d54e900

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+115
-86
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ steps to contribute:
7979

8080
Fork this repository and ensure you're working on the `main` branch:
8181

82-
[![fork-button](./src/public/fork-button.png)](https://github.com/iExecBlockchainComputing/documentation/fork)
82+
[![fork-button](/src/public/fork-button.png)](https://github.com/iExecBlockchainComputing/documentation/fork)
8383

8484
### 2. Set Up Your Development Environment
8585

src/components/AddressChip.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<script setup>
1616
import { ref, computed } from 'vue';
1717
import avatarStyles from './profile.module.css';
18-
import { getAvatarVisualNumber } from '../utils/getAvatarVisualNumber';
19-
import { truncateAddress } from '../utils/truncateAddress';
18+
import { getAvatarVisualNumber } from '@/utils/getAvatarVisualNumber';
19+
import { truncateAddress } from '@/utils/truncateAddress';
2020
2121
const props = defineProps({
2222
address: {

src/get-started/helloWorld/2-protectData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description:
66
---
77

88
<script setup>
9-
import ProtectData from '../../modules/helloWorld/ProtectData.vue';
9+
import ProtectData from '@/modules/helloWorld/ProtectData.vue';
1010
</script>
1111

1212
# 🛡️ Let's Protect Data

src/get-started/helloWorld/4-manageDataAccess.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ description:
66
---
77

88
<script setup>
9-
import GrantAccess from '../../modules/helloWorld/GrantAccess.vue';
10-
import { useWalletConnection } from '../../hooks/useWalletConnection.vue';
9+
import GrantAccess from '@/modules/helloWorld/GrantAccess.vue';
10+
import { useWalletConnection } from '@/hooks/useWalletConnection.vue';
1111

1212
const { protectedDataAddress } = useWalletConnection();
1313
</script>

src/get-started/helloWorld/5-bonusChapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ description:
5858
</template>
5959

6060
<script setup>
61-
import CouponCode from '../../modules/helloWorld/CouponCode.vue';
61+
import CouponCode from '@/modules/helloWorld/CouponCode.vue';
6262
import Button from '@/components/ui/Button.vue';
6363
import useUserStore from '@/stores/useUser.store';
6464
import { computed } from 'vue';

src/get-started/rlc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ You can acquire RLC tokens through several methods:
117117

118118
Ready to dive into the iExec ecosystem? Here are the next steps:
119119

120-
- **[Bridge RLC](./tooling-and-explorers/bridge.md)** - Transfer RLC between
121-
networks
122-
- **[Start Using iExec](./quick-start.md)** - Begin your confidential computing
123-
journey
120+
- **[Bridge RLC](/get-started/tooling-and-explorers/bridge)** - Transfer RLC
121+
between networks
122+
- **[Start Using iExec](/get-started/quick-start)** - Begin your confidential
123+
computing journey
124124
- **[Earn RLC](/guides/manage-data/manage-access)** - Become a provider and
125125
monetize your resources
126126

src/guides/use-iapp/add-inputs-to-execution.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,8 @@ const dbPassword = process.env.IEXEC_SECRET_2; // 'database-password'
333333
Now that you understand how to add inputs to iApp executions:
334334

335335
- Learn about
336-
[Using iApps with Protected Data](./use-iapp-with-protected-data.md)
337-
- Explore [Different Ways to Execute](./different-ways-to-execute.md) iApps
338-
- Check out our [How to Pay for Executions](./how-to-pay-executions.md) guide
336+
[Using iApps with Protected Data](/guides/use-iapp/use-iapp-with-protected-data)
337+
- Explore
338+
[Different Ways to Execute](/guides/use-iapp/different-ways-to-execute) iApps
339+
- Check out our
340+
[How to Pay for Executions](/guides/use-iapp/how-to-pay-executions) guide

src/guides/use-iapp/different-ways-to-execute.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ iapp test
109109
## Next Steps
110110

111111
- Learn how to
112-
[use iApps with protected data](./use-iapp-with-protected-data.md)
113-
- Discover how to [add inputs to execution](./add-inputs-to-execution.md)
114-
- Understand [how to pay for executions](./how-to-pay-executions.md)
112+
[use iApps with protected data](/guides/use-iapp/use-iapp-with-protected-data)
113+
- Discover how to
114+
[add inputs to execution](/guides/use-iapp/add-inputs-to-execution)
115+
- Understand [how to pay for executions](/guides/use-iapp/how-to-pay-executions)

src/guides/use-iapp/getting-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ section.
7373

7474
For step-by-step instructions, check out these guides:
7575

76-
- **[Different Ways to Execute](./different-ways-to-execute.md)** - iExec cli,
77-
lib, and other execution methods
78-
- **[Use iApps with Protected Data](./use-iapp-with-protected-data.md)** -
76+
- **[Different Ways to Execute](/guides/use-iapp/different-ways-to-execute)** -
77+
iExec cli, lib, and other execution methods
78+
- **[Use iApps with Protected Data](/guides/use-iapp/use-iapp-with-protected-data)** -
7979
Working with sensitive data securely
80-
- **[Add Inputs to Execution](./add-inputs-to-execution.md)** - How to provide
81-
data and parameters to iApps
82-
- **[How to Pay for Executions](./how-to-pay-executions.md)** - Understanding
83-
costs and payment options
80+
- **[Add Inputs to Execution](/guides/use-iapp/add-inputs-to-execution)** - How
81+
to provide data and parameters to iApps
82+
- **[How to Pay for Executions](/guides/use-iapp/how-to-pay-executions)** -
83+
Understanding costs and payment options
8484

8585
## Quick Start
8686

src/guides/use-iapp/how-to-pay-executions.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,8 +490,10 @@ const executeWithPaymentRetry = async (params: any, maxRetries = 3) => {
490490

491491
Now that you understand payment methods:
492492

493-
- Learn about [Adding Inputs to Execution](./add-inputs-to-execution.md)
494-
- Explore [Using iApps with Protected Data](./use-iapp-with-protected-data.md)
493+
- Learn about
494+
[Adding Inputs to Execution](/guides/use-iapp/add-inputs-to-execution)
495+
- Explore
496+
[Using iApps with Protected Data](/guides/use-iapp/use-iapp-with-protected-data)
495497
- Review the pricing information above for detailed cost analysis
496498

497499
<script setup>

0 commit comments

Comments
 (0)