Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/fundamentals/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id: "index"
title: "Super Swarm Certification System"
slug: "/"
sidebar_position: 1
sidebar_position: 0
---

When a node (a confidential virtual machine, VM) joins a Super Swarm network, it goes through a cryptographic onboarding process that establishes hardware-backed trust before participating in any cluster operations. This document explains how that process works: what certificates are generated, how they relate to one another, and what exactly is verified.
Expand Down
20 changes: 10 additions & 10 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const config = {
[
"@docusaurus/plugin-content-docs",
{
id: "cli",
path: "./docs/cli",
routeBasePath: "/cli",
id: "fundamentals",
path: "./docs/fundamentals",
routeBasePath: "/fundamentals",
//sidebarPath: "./sidebars.js",
remarkPlugins: [math],
rehypePlugins: [katex],
Expand All @@ -59,9 +59,9 @@ const config = {
[
"@docusaurus/plugin-content-docs",
{
id: "fundamentals",
path: "./docs/fundamentals",
routeBasePath: "/fundamentals",
id: "cli",
path: "./docs/cli",
routeBasePath: "/cli",
//sidebarPath: "./sidebars.js",
remarkPlugins: [math],
rehypePlugins: [katex],
Expand Down Expand Up @@ -104,15 +104,15 @@ const config = {
type: "doc",
docId: "index",
position: "right",
label: "CLI",
docsPluginId: "cli",
label: "Fundamentals",
docsPluginId: "fundamentals",
},
{
type: "doc",
docId: "index",
position: "right",
label: "Fundamentals",
docsPluginId: "fundamentals",
label: "CLI",
docsPluginId: "cli",
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Home() {
const history = useHistory();

useEffect(() => {
history.replace('/cli' + window.location.search + window.location.hash);
history.replace('/fundamentals' + window.location.search + window.location.hash);
}, []);

return null;
Expand Down
Loading