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
Copy file name to clipboardexpand all lines: components/feature/sticky-box.tsx
+1-1
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ const content = [
70
70
title: 'Effortless Continuous Delivery',
71
71
subtitle: 'Deploy with confidence',
72
72
description:
73
-
'Deploy applications with confidence - no container expertise needed. Let Devbox handle versioning, container builds and orchestration while you focus on coding.',
73
+
'Deploy applications with confidence - no container expertise needed. Let DevBox handle versioning, container builds and orchestration while you focus on coding.',
Copy file name to clipboardexpand all lines: content/docs/advanced/architecture.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -2,21 +2,21 @@
2
2
title: Architecture
3
3
---
4
4
5
-
Sealos Devbox is an advanced development environment solution that leverages cloud-native Container and Kubernetes technologies to offer a unified and flexible development Runtime. Its key feature is simulating a traditional virtual machine experience while maintaining containerization benefits.
5
+
Sealos DevBox is an advanced development environment solution that leverages cloud-native Container and Kubernetes technologies to offer a unified and flexible development Runtime. Its key feature is simulating a traditional virtual machine experience while maintaining containerization benefits.
6
6
7
7
## Architecture
8
8
9
-
Sealos Devbox is built on a layered architecture, comprising these key components:
9
+
Sealos DevBox is built on a layered architecture, comprising these key components:
10
10
11
11

12
12
13
13
14
14
## Control Flow
15
15
16
-
Devbox implements a decoupled front-end and back-end design:
16
+
DevBox implements a decoupled front-end and back-end design:
17
17
18
18
1. Users trigger actions via the web interface or plugins
19
-
2.Devbox Controller receives and processes these requests
19
+
2.DevBox Controller receives and processes these requests
20
20
3. Controller translates the processed instructions into Kubernetes API calls
21
21
4. Kubernetes executes the corresponding Container operations
22
22
@@ -26,7 +26,7 @@ Devbox implements a decoupled front-end and back-end design:
26
26
27
27
## State Persistence Mechanism
28
28
29
-
Devbox employs an intelligent state preservation system to maintain user environment consistency:
29
+
DevBox employs an intelligent state preservation system to maintain user environment consistency:
Copy file name to clipboardexpand all lines: content/docs/examples/build-your-own-discord-bot.zh-cn.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
---
2
2
title: Build Your Own Discord Bot
3
-
description: Build an AI-powered Discord bot using Devbox. You'll create a bot that can respond to messages using AI capabilities powered by FastGPT.
3
+
description: Build an AI-powered Discord bot using DevBox. You'll create a bot that can respond to messages using AI capabilities powered by FastGPT.
4
4
---
5
5
6
6
## Overview
7
7
8
-
This example demonstrates how to build an AI-powered Discord bot using Devbox. You'll create a bot that can respond to messages using AI capabilities powered by [FastGPT](https://tryfastgpt.ai), showcasing how to integrate multiple services and APIs in a Devbox environment.
8
+
This example demonstrates how to build an AI-powered Discord bot using DevBox. You'll create a bot that can respond to messages using AI capabilities powered by [FastGPT](https://tryfastgpt.ai), showcasing how to integrate multiple services and APIs in a DevBox environment.
9
9
10
10
**Technologies Used:**
11
11
- Node.js
12
12
- Discord.js
13
13
- FastGPT API
14
-
-Devbox development environment
14
+
-DevBox development environment
15
15
16
16
**Expected Outcome:**
17
17
- A functioning Discord bot that:
@@ -65,12 +65,12 @@ This example demonstrates how to build an AI-powered Discord bot using Devbox. Y
65
65
66
66
</div>
67
67
68
-
### 2. Creating Devbox Project
68
+
### 2. Creating DevBox Project
69
69
70
70
<divclassName='steps [&_h4]:step'>
71
71
72
72
#### Initialize Node.js Project
73
-
1.[Create a new Devbox project](/docs/guides/fundamentals/create-a-project)
73
+
1.[Create a new DevBox project](/docs/guides/fundamentals/create-a-project)
Copy file name to clipboardexpand all lines: content/docs/guides/databases/kafka/go.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
title: Go
3
-
description: Learn how to connect to Kafka in Sealos Devbox using Go
3
+
description: Learn how to connect to Kafka in Sealos DevBox using Go
4
4
---
5
5
6
-
This guide will walk you through the process of connecting to Kafka using Go within your Sealos Devbox project.
6
+
This guide will walk you through the process of connecting to Kafka using Go within your Sealos DevBox project.
7
7
8
8
## Prerequisites
9
9
10
-
-[A Sealos Devbox project](/docs/guides/fundamentals/create-a-project) with Go environment
10
+
-[A Sealos DevBox project](/docs/guides/fundamentals/create-a-project) with Go environment
11
11
-[A Kafka cluster created using the Database app in Sealos](./)
12
12
13
13
## Install Required Packages
@@ -24,7 +24,7 @@ This command installs:
24
24
25
25
## System Dependencies
26
26
27
-
The `confluent-kafka-go` package requires `librdkafka` as a system dependency. In Sealos Devbox, you might need to install it manually. Run the following commands in your Cursor terminal:
27
+
The `confluent-kafka-go` package requires `librdkafka` as a system dependency. In Sealos DevBox, you might need to install it manually. Run the following commands in your Cursor terminal:
28
28
29
29
```bash
30
30
sudo apt-get update
@@ -190,7 +190,7 @@ If you encounter connection issues:
190
190
191
191
1. Verify your Kafka broker address in the `broker` variable.
192
192
2. Ensure your Kafka cluster is running and accessible.
193
-
3. Check for any network restrictions in your Devbox environment.
193
+
3. Check for any network restrictions in your DevBox environment.
194
194
4. Confirm that the required packages and system dependencies are correctly installed.
195
195
5. If you encounter `cgo` related errors, make sure you have the necessary build tools installed (`sudo apt-get install build-essential`).
0 commit comments