Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 26 additions & 32 deletions docs/.vitepress/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,21 +328,22 @@ const side = {

"/developer/": [
{
text: "Installing Olares",
text: "Olares installation",
link: "/developer/install/",
items: [
{
text: "Installation overview",
link: "/developer/install/installation-overview",
collapsed: true,
},
{
text: "Installation process",
link: "/developer/install/installation-process",
},
{
text: "Olares Home",
link: "/developer/install/olares-home",
},
{
text: "Installation breakdown",
link: "/developer/install/installation-process",
},
{
text: "Olares Home",
link: "/developer/install/olares-home",
},
{
text: "Environment variables",
link: "/developer/install/environment-variables",
Expand Down Expand Up @@ -376,12 +377,9 @@ const side = {
],
},
{
text: "Developing Olares App",
text: "Develop Olares app",
link: "/developer/develop/",
items: [
{
text: "Overview",
link: "/developer/develop/",
},
{
text: "Tutorial",
collapsed: true,
Expand All @@ -392,32 +390,32 @@ const side = {
link: "/developer/develop/tutorial/devbox",
},
{
text: "Create Your First Apps",
text: "Create your first app",
collapsed: true,
link: "/developer/develop/tutorial/note/",
items: [
{
text: "1. Create App",
text: "1. Create app",
link: "/developer/develop/tutorial/note/create",
},
{
text: "2. Develop Backend",
text: "2. Develop backend",
link: "/developer/develop/tutorial/note/backend",
},
{
text: "3. Develop Frontend",
text: "3. Develop frontend",
link: "/developer/develop/tutorial/note/frontend",
},
],
},
],
},
{
text: "Application Package",
text: "Application package",
collapsed: true,
items: [
{
text: "Application Chart",
text: "Application chart",
link: "/developer/develop/package/chart",
},
{
Expand All @@ -429,11 +427,11 @@ const side = {
link: "/developer/develop/package/model",
},
{
text: "Recommend",
text: "Recommendation",
link: "/developer/develop/package/recommend",
},
{
text: "Helm Extension",
text: "Helm extension",
link: "/developer/develop/package/extension",
},
],
Expand All @@ -447,7 +445,7 @@ const side = {
link: "/developer/develop/advanced/terminus-info",
},
{
text: "Service Provider",
text: "Service provider",
link: "/developer/develop/advanced/provider",
},
{
Expand All @@ -473,7 +471,7 @@ const side = {
link: "/developer/develop/advanced/websocket",
},
{
text: "File Upload",
text: "File upload",
link: "/developer/develop/advanced/file-upload",
},
// {
Expand All @@ -500,21 +498,17 @@ const side = {
},

{
text: "Submit Application",
text: "Submit application",
collapsed: true,
link: "/developer/develop/submit/",
},
],
},
{
text: "Contributing To Olares",
text: "Contribute to Olares",
items: [
{
text: "Olares",
link: "/developer/contribute/olares",
},
{
text: "Develop System App",
text: "Develop system app",
collapsed: true,

items: [
Expand Down Expand Up @@ -553,7 +547,7 @@ export const en = defineConfig({

nav: [
{ text: "Manual", link: "/manual/docs-home" },
{ text: "Developer", link: "/developer/develop/" },
{ text: "Developer Guide", link: "/developer/install/" },
],

sidebar: side,
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/develop/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Overview
# Develop Olares application

Developing applications on Olares is not much different from regular website development. Once you learn a few basic Olares concepts, you can start creating applications on his platform.

Expand Down
9 changes: 5 additions & 4 deletions docs/developer/install/cli/olares-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ Olares provides Olares CLI, a command-line tool for developers and system admini

The recommended [one-liner installation command](../../../manual/get-started/install-olares.md) retrieves a shell script from https://olares.sh/ that downloads and installs Olares CLI. Once installed, the CLI orchestrates the remainder of the setup.

In general, Olares CLI manages installation through three main phases:
1. **Download**: Olares CLI fetches the necessary components.
2. **Prepare**: Olares CLI prepares the environment for installation.
3. **Install**: Olares CLI installs the core services of Olares.
In general, Olares CLI manages installation through four main phases:
1. **Precheck**: Olares CLI checks the system environment.
2. **Download**: Olares CLI fetches the necessary components.
3. **Prepare**: Olares CLI prepares the environment for installation.
4. **Install**: Olares CLI installs the core services of Olares.

This page explains the Olares CLI syntax and describes the command operations.

Expand Down
Loading