Skip to content
Closed
Show file tree
Hide file tree
Changes from 17 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
67 changes: 64 additions & 3 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,70 @@ function sidebarHome() {
],
},
{
text: "How-to Guides (Under Construction 🚧)",
collapsed: true,
items: [],
text: "Hackathon Docs",
collapsed: false,
items: [
{
text: "Overview",
link: "/docs/hackathon/overview",
},
{
text: "Quick Start",
collapsed: true,
items: [
{
text: "Installation & Setup",
link: "/docs/hackathon/quick-start/installation",
},
{
text: "First Message Example",
link: "/docs/hackathon/quick-start/first-message",
},
],
},
{
text: "Deployment Options",
collapsed: true,
items: [
{
text: "P2P Network Only",
link: "/docs/hackathon/deployment/p2p-only",
},
{
text: "P2P Network with Gateway",
link: "/docs/hackathon/deployment/p2p-with-gateway",
},
],
},
{
text: "Client Development",
collapsed: true,
items: [
{
text: "mump2p-cli",
link: "/docs/hackathon/clients/mump2p-cli",
},
{
text: "gRPC Client Examples",
link: "/docs/hackathon/clients/grpc-examples",
},
],
},
{
text: "Configuration",
collapsed: true,
items: [
{
text: "OptimumP2P Configuration",
link: "/docs/hackathon/configuration/optimump2p",
},
{
text: "GossipSub Configuration",
link: "/docs/hackathon/configuration/gossipsub",
},
],
},
],
},
{
text: "Research",
Expand Down
Loading
Loading