From af7ef49b6cf4f5113341ce65d4b3104ed34f3638 Mon Sep 17 00:00:00 2001 From: antiyro Date: Tue, 8 Oct 2024 12:21:59 +0100 Subject: [PATCH] added architecture category --- pages/_meta.en.json | 8 +++---- pages/chain-architecture/_meta.en.json | 7 +++++++ pages/chain-architecture/architecture.mdx | 22 ++++++++++++++++++++ pages/chain-architecture/bootstrapper.en.mdx | 22 ++++++++++++++++++++ pages/chain-architecture/orchestrator.en.mdx | 22 ++++++++++++++++++++ pages/chain-architecture/sequencer.en.mdx | 22 ++++++++++++++++++++ pages/chain-architecture/snos.en.mdx | 22 ++++++++++++++++++++ pages/overview.en.mdx | 20 ++++++++---------- 8 files changed, 130 insertions(+), 15 deletions(-) create mode 100644 pages/chain-architecture/_meta.en.json create mode 100644 pages/chain-architecture/architecture.mdx create mode 100644 pages/chain-architecture/bootstrapper.en.mdx create mode 100644 pages/chain-architecture/orchestrator.en.mdx create mode 100644 pages/chain-architecture/sequencer.en.mdx create mode 100644 pages/chain-architecture/snos.en.mdx diff --git a/pages/_meta.en.json b/pages/_meta.en.json index 5ebf102..ba25def 100644 --- a/pages/_meta.en.json +++ b/pages/_meta.en.json @@ -42,12 +42,12 @@ "overview": { "title": "Overview" }, - "architecture": { - "title": "Architecture" - }, "start": { "title": "Start a self-hosted chain" }, + "chain-architecture": { + "title": "Architecture" + }, "chain-configuration": { "title": "Configuration" }, @@ -63,7 +63,7 @@ "type": "separator" }, "--- Tutorials": { - "title": "Tutorials", + "title": "TUTORIALS", "type": "separator" }, "tutorials-full-node": { diff --git a/pages/chain-architecture/_meta.en.json b/pages/chain-architecture/_meta.en.json new file mode 100644 index 0000000..bdaa962 --- /dev/null +++ b/pages/chain-architecture/_meta.en.json @@ -0,0 +1,7 @@ +{ + "architecture": "Architecture", + "sequencer": "Sequencer", + "bootstrapper": "Bootstrapper", + "orchestrator": "Orchestrator", + "snos": "SNOS" +} diff --git a/pages/chain-architecture/architecture.mdx b/pages/chain-architecture/architecture.mdx new file mode 100644 index 0000000..9a8f8e2 --- /dev/null +++ b/pages/chain-architecture/architecture.mdx @@ -0,0 +1,22 @@ +--- +title: Architecture +lang: en-US +description: A guide to monitor your node using Architecture. +--- + +import { Steps } from "nextra-theme-docs"; +import { Callout } from "nextra-theme-docs"; +import { Cards, Card } from "nextra/components"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { + faLinux, + faApple, + faWindows, +} from "@fortawesome/free-brands-svg-icons"; +import { Tabs, Tab } from "nextra/components"; + +# 🚧 Architecture + + + This section is still under construction. + \ No newline at end of file diff --git a/pages/chain-architecture/bootstrapper.en.mdx b/pages/chain-architecture/bootstrapper.en.mdx new file mode 100644 index 0000000..f657afc --- /dev/null +++ b/pages/chain-architecture/bootstrapper.en.mdx @@ -0,0 +1,22 @@ +--- +title: Bootstrapper +lang: en-US +description: A guide to monitor your node using Bootstrapper. +--- + +import { Steps } from "nextra-theme-docs"; +import { Callout } from "nextra-theme-docs"; +import { Cards, Card } from "nextra/components"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { + faLinux, + faApple, + faWindows, +} from "@fortawesome/free-brands-svg-icons"; +import { Tabs, Tab } from "nextra/components"; + +# 🚧 Bootstrapper + + + This section is still under construction. + \ No newline at end of file diff --git a/pages/chain-architecture/orchestrator.en.mdx b/pages/chain-architecture/orchestrator.en.mdx new file mode 100644 index 0000000..7d49ca1 --- /dev/null +++ b/pages/chain-architecture/orchestrator.en.mdx @@ -0,0 +1,22 @@ +--- +title: Orchestrator +lang: en-US +description: A guide to monitor your node using Orchestrator. +--- + +import { Steps } from "nextra-theme-docs"; +import { Callout } from "nextra-theme-docs"; +import { Cards, Card } from "nextra/components"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { + faLinux, + faApple, + faWindows, +} from "@fortawesome/free-brands-svg-icons"; +import { Tabs, Tab } from "nextra/components"; + +# 🚧 Orchestrator + + + This section is still under construction. + \ No newline at end of file diff --git a/pages/chain-architecture/sequencer.en.mdx b/pages/chain-architecture/sequencer.en.mdx new file mode 100644 index 0000000..ef2a7f5 --- /dev/null +++ b/pages/chain-architecture/sequencer.en.mdx @@ -0,0 +1,22 @@ +--- +title: Sequencer +lang: en-US +description: A guide to monitor your node using Sequencer. +--- + +import { Steps } from "nextra-theme-docs"; +import { Callout } from "nextra-theme-docs"; +import { Cards, Card } from "nextra/components"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { + faLinux, + faApple, + faWindows, +} from "@fortawesome/free-brands-svg-icons"; +import { Tabs, Tab } from "nextra/components"; + +# 🚧 Sequencer + + + This section is still under construction. + \ No newline at end of file diff --git a/pages/chain-architecture/snos.en.mdx b/pages/chain-architecture/snos.en.mdx new file mode 100644 index 0000000..eded938 --- /dev/null +++ b/pages/chain-architecture/snos.en.mdx @@ -0,0 +1,22 @@ +--- +title: SNOS +lang: en-US +description: A guide to monitor your node using SNOS. +--- + +import { Steps } from "nextra-theme-docs"; +import { Callout } from "nextra-theme-docs"; +import { Cards, Card } from "nextra/components"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { + faLinux, + faApple, + faWindows, +} from "@fortawesome/free-brands-svg-icons"; +import { Tabs, Tab } from "nextra/components"; + +# 🚧 SNOS + + + This section is still under construction. + \ No newline at end of file diff --git a/pages/overview.en.mdx b/pages/overview.en.mdx index 2a530ba..b522b56 100644 --- a/pages/overview.en.mdx +++ b/pages/overview.en.mdx @@ -5,29 +5,26 @@ description: Learn how to run and custom your Madara client as a chain operator. --- import { Cards, Card } from 'nextra/components' -import { Server, Settings, Network, Plug, Wrench, Rocket, MonitorCog, HardDrive, FlaskConical, Globe, Activity } from 'lucide-react'; +import { Server, Settings, Network, Play, Wrench, Blocks, Rocket, PencilRuler, HardDrive, FlaskConical, Globe, Sprout, BrainCircuit } from 'lucide-react'; import { Callout } from "nextra-theme-docs"; # Chain Operators -Welcome to the Chain Operators section of the Madara documentation, your comprehensive resource for running and customizing your Madara App Chain. - -Here, we will help you install and configure your Madara client to best meet your needs. We wanted to make this documentation accessible to everyone, so we divided it into several levels ranging from low to high, and covers different ways of launching your Madara client: **Sequencer**, **Full Node**, and **Devenet**. +Welcome to the Chain Operators section of the Madara documentation, your comprehensive resource for running your Madara App Chain. Here, we will help you configure and customize your own App Chain to best meet your needs. - This section is intended to configure your node to participate in or launch your own network. To configure your own App Chain, you should head up to the [Chain Operator](/overview) section. + This section is intended to help you configure and customize your Chain. To configure Madara as a client, you should head up to the [Chain Operator](/overview) section. -## Starting Points for Node Operators +## Starting Points for Chain Operators -From setting up a Full Node to configuring a Sequencer or your own Devnet, all the guides and resources you need are here. +From launching a self-hosted Madara App Chain to configuring an entire Network, here are all the ressources you need to get started - } /> - } /> + } /> + } /> } /> - } /> - } /> + } /> ## Essential Tools for Node Operators @@ -37,6 +34,7 @@ Take advantage of these essential tools to start and optimize your Madara node. } /> } /> + } /> ## Learn More