Skip to content

Commit 446b50c

Browse files
committed
Refactor iApp and Workerpool terminology for consistency
Updated references to "iApps" to "iApp" across documentation and sidebar for uniformity. Removed outdated iApps and Workerpools pages, consolidating content for clarity. Adjusted links and terminology in related files to reflect these changes.
1 parent 59ff1fb commit 446b50c

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

.github/styles/config/vocabularies/Technical/accept.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,10 @@ ethereum
125125
intel
126126
nano
127127
workerpool
128+
Workerpool
128129
protectedData
129130
dataProtector
131+
DataProtector
130132
iApp
131133
sconification
132134
middleware

.vitepress/sidebar.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ export function getSidebar() {
6464
link: '/get-started/overview/protected-data',
6565
},
6666
{
67-
text: 'iApps',
68-
link: '/get-started/overview/iapps',
67+
text: 'iApp',
68+
link: '/get-started/overview/iapp',
6969
},
7070
{
7171
text: 'Workerpools',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description:
66
AI, data analysis, and Web3 apps.
77
---
88

9-
# iApps
9+
# iApp
1010

1111
An iExec Application (iApp) brings Turnkey Privacy to your regular application
1212
code. Your Python scripts, AI models, or data processors can securely process

src/get-started/overview/what-is-iexec.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ developers build privacy-preserving applications.
1717
Your sensitive data gets encrypted and stored online. Only you control who can
1818
access it.
1919

20-
**Devtool**: [DataProtector](/references/dataProtector) handles this for you
20+
**DevTool**: [DataProtector](/references/dataProtector) handles this for you
2121

2222
### Step 2: Secure Computing (Workers)
2323

2424
Code runs inside **secure enclaves** (TEEs) on iExec workers. The worker can
2525
access your data to process it, but only within the privacy-safe TEE
2626
environment - your data never leaves the secure bubble.
2727

28-
### Step 3: Run iApps
28+
### Step 3: Run iApp
2929

3030
You submit a **Task** = "Run this iApp on this protected data". The protocol
3131
finds available workers and executes everything confidentially.
3232

33-
**Devtool**: [iApp Generator](/references/iapp-generator) helps you create and
34-
deploy iApps
33+
**DevTool**: [iApp Generator](/references/iapp-generator) helps you create and
34+
deploy iApp
3535

3636
### Step 4: Get Results
3737

@@ -49,7 +49,7 @@ Protected Data + iApp + Worker = Task → Encrypted Result
4949
Your data, encrypted. You set the rules: "Only these apps can use it, only for
5050
these purposes."
5151

52-
### **iApps**
52+
### **iApp**
5353

5454
Your code, packaged to run on workers. Can be AI models, data processing
5555
scripts, any computation.
@@ -90,7 +90,7 @@ Now that you get the protocol, pick your devtools:
9090
under the hood)
9191
- **Protect Data**: Try [DataProtector](/references/dataProtector) to encrypt
9292
your first dataset
93-
- **Build iApps**: Create confidential compute with
93+
- **Build iApp**: Create confidential compute with
9494
[iApp Generator](/references/iapp-generator)
9595
- **Hands-On**: Follow our [Hello World](/get-started/helloWorld) to see all
9696
devtools working together
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Workerpools
33
description:
4-
Learn about workerpools in iExec - the computing resources that execute iApps
4+
Learn about workerpools in iExec - the computing resources that execute iApp
55
---
66

77
# Workerpools
88

99
A **Workerpool** is a group of computing machines (workers) managed by a
10-
**Workerpool Manager** that provides computational resources to execute iApps in
10+
**Workerpool Manager** that provides computational resources to execute iApp in
1111
secure environments on the iExec network.
1212

1313
<div class="bg-gradient-to-r from-blue-400/10 to-blue-400/5 rounded-[6px] p-6 border-l-4 border-blue-700 mb-6">
14-
<p class="m-0!">Think of workerpools as <span class="text-blue-700 font-semibold">computing clusters</span> where your iApps run. Each workerpool consists of multiple workers (machines) coordinated by a manager who ensures tasks are executed efficiently and securely.</p>
14+
<p class="m-0!">Think of workerpools as <span class="text-blue-700 font-semibold">computing clusters</span> where your iApp run. Each workerpool consists of multiple workers (machines) coordinated by a manager who ensures tasks are executed efficiently and securely.</p>
1515
</div>
1616

1717
## Key Concepts
@@ -58,7 +58,7 @@ secure environments on the iExec network.
5858
<div class="flex items-center gap-3">
5959
<span>•</span>
6060
<div>
61-
<strong>Task Execution:</strong> Run iApps and process protected data securely
61+
<strong>Task Execution:</strong> Run iApp and process protected data securely
6262
</div>
6363
</div>
6464
<div class="flex items-center gap-3">
@@ -137,7 +137,7 @@ secure environments on the iExec network.
137137
## Getting Started
138138

139139
<div class="bg-gradient-to-r from-green-400/10 to-green-400/5 rounded-[6px] p-6 border-l-4 border-green-600 mb-6">
140-
<p class="m-0!">Want to <span class="text-green-700 font-semibold">use workerpools</span>? Start building iApps and the protocol will handle workerpool selection automatically. Want to <span class="text-green-700 font-semibold">operate a workerpool</span>? Check our deployment guides.</p>
140+
<p class="m-0!">Want to <span class="text-green-700 font-semibold">use workerpools</span>? Start building iApp and the protocol will handle workerpool selection automatically. Want to <span class="text-green-700 font-semibold">operate a workerpool</span>? Check our deployment guides.</p>
141141
</div>
142142

143143
## Next Steps

src/references/iapp-generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ SGX/TDX secure enclaves where data stays private during processing.
3737

3838
Start here to understand what iApp are and how they work:
3939

40-
- **[iApps](/get-started/overview/iapps)** - Core concepts and TEE overview
40+
- **[iApp](/get-started/overview/iapp)** - Core concepts and TEE overview
4141
- **[Getting Started](/references/iapp-generator/getting-started)** - Your first
4242
iApp in 15 minutes
4343
- **[Building Your iApp](/references/iapp-generator/building-your-iexec-app)** -

0 commit comments

Comments
 (0)