-
Notifications
You must be signed in to change notification settings - Fork 28
/
vocs.config.ts
46 lines (44 loc) · 1.25 KB
/
vocs.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { defineConfig } from 'vocs'
export default defineConfig({
title: 'Stone Packaging',
rootDir: 'docs',
sidebar: [
{
text: "Overview",
link: "/",
},
{
text: 'Installation',
collapsed: true,
items: [
{ text: "From sources", link: "/install/sources" },
{ text: "Static binaries", link: "/install/binaries" },
{ text: "Docker images", link: "/install/docker" },
{ text: "Debian packages", link: "/install/debian" },
{ text: "Homebrew", link: "/install/homebrew" },
],
},
{
text: 'Usage',
collapsed: true,
items: [
{ text: "Generating execution artifacts", link: "/usage/execution" },
{ text: "Stone Prover configuration", link: "/usage/configuration" },
{ text: "Proving execution", link: "/usage/proving" },
{ text: "Verifying proof", link: "/usage/verifying" },
],
},
{
text: 'Advanced',
collapsed: true,
items: [
{ text: "Verifying Stone proof in Ethereum", link: "/advanced/ethereum" },
{ text: "Verifying Stone proof on Starknet", link: "/advanced/starknet" },
],
},
{
text: 'Stone Packaging Resources',
link: '/resourcers',
},
],
})