-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathsidebar.ts
More file actions
59 lines (58 loc) · 1.78 KB
/
sidebar.ts
File metadata and controls
59 lines (58 loc) · 1.78 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
import type { Config } from 'vocs'
export const sidebar = [
{
text: 'Start',
items: [
{ text: 'What is Centaur?', link: '/what-is-centaur' },
{ text: 'Quickstart', link: '/quickstart' },
{ text: 'Mac Mini-style setup', link: '/mac-mini-setup' },
{ text: 'Deploying in Production', link: '/deploying-in-production' },
{ text: 'Architecture', link: '/architecture' },
],
},
{
text: 'Operate',
items: [
{ text: 'Slack ETL', link: '/operate/slack-etl' },
],
},
{
text: 'Extend Centaur',
items: [
{ text: 'ACME example', link: '/extend/acme-example' },
{ text: 'Using an overlay', link: '/extend/overlay' },
{ text: 'Creating Skills', link: '/extend/skills' },
{ text: 'Creating Tools', link: '/extend/tools' },
{ text: 'Creating Workflows', link: '/extend/workflows' },
{ text: '🚧 Creating Apps', link: '/extend/apps' },
],
},
{
text: 'Secrets',
items: [
{ text: 'How is Centaur securing my secrets?', link: '/security' },
{ text: '1Password', link: '/secrets/onepassword' },
{ text: 'Environment Variables', link: '/secrets/environment' },
{ text: '🚧 AWS KMS', disabled: true },
{ text: '🚧 GCP Secret Manager', disabled: true },
{ text: '🚧 Advanced Permissioning', link: '/secrets/advanced-permissioning' },
],
},
{
text: 'Reference',
items: [
{ text: 'Configuration', link: '/reference/configuration' },
{ text: 'Tool Directory', link: '/reference/tool-directory' },
],
},
{
text: 'Resources',
items: [
{ text: 'Brand', link: '/brand' },
{
text: 'MIT License',
link: 'https://github.com/paradigmxyz/centaur/blob/main/LICENSE',
},
],
},
] satisfies Config['sidebar']