-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
105 lines (104 loc) · 3.69 KB
/
Copy pathastro.config.mjs
File metadata and controls
105 lines (104 loc) · 3.69 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightThemeBlack from 'starlight-theme-black';
// https://astro.build/config
export default defineConfig({
site: 'https://kosh.plutolab.org',
integrations: [
starlight({
plugins: [
starlightThemeBlack({
// One entry per top-level area of the docs, so nothing here
// duplicates another item's destination.
navLinks: [
{ label: 'Home', link: '/' },
{ label: 'Quick Start', link: '/guides/quickstart/' },
{ label: 'Commands', link: '/reference/commands/' },
{ label: 'Security', link: '/technical/encryption/' },
{
label: 'Download',
link: 'https://git.plutolab.org/plutolab/kosh/releases',
attrs: { target: '_blank', rel: 'noopener noreferrer' },
},
],
})
],
title: 'Kosh Docs',
description:
'Kosh is a local-first, end-to-end encrypted CLI password manager. Nothing ever leaves your machine.',
customCss: [
'@fontsource-variable/source-serif-4/wght.css',
'./src/styles/custom.css'
],
logo: {
dark: './src/assets/kosh_light.svg',
light: './src/assets/kosh_dark.svg',
replacesTitle: true,
},
social: [
{ icon: 'seti:git', label: 'Forgejo', href: 'https://git.plutolab.org/plutolab/kosh' },
{ icon: 'github', label: 'GitHub', href: 'https://github.com/gitKashish' },
{ icon: 'codeberg', label: 'Codeberg', href: 'https://codeberg.org/kashish-sahu' },
{ icon: 'linkedin', label: 'Linkedin', href: 'https://www.linkedin.com/in/kashish-sahu/' },
],
sidebar: [
{
label: 'Start Here',
items: [
{ label: 'Installation', slug: 'guides/installation' },
{ label: 'Quick Start', slug: 'guides/quickstart' },
{
label: 'Upgrading to v0.3.0',
slug: 'guides/upgrading',
badge: { text: 'New', variant: 'caution' },
},
],
},
{
label: 'Guides',
items: [
{ label: 'Storing Credentials', slug: 'guides/storing-credentials' },
{ label: 'Retrieving Credentials', slug: 'guides/retrieving-credentials' },
{ label: 'Managing Credentials', slug: 'guides/managing-credentials' },
{ label: 'Profiles', slug: 'guides/profiles' },
],
},
{
label: 'Reference',
items: [
{
label: 'Commands',
collapsed: true,
items: [
{ label: 'Overview', slug: 'reference/commands' },
{ label: 'kosh init', slug: 'reference/commands/init' },
{ label: 'kosh add', slug: 'reference/commands/add' },
{ label: 'kosh generate', slug: 'reference/commands/generate' },
{ label: 'kosh list', slug: 'reference/commands/list' },
{ label: 'kosh get', slug: 'reference/commands/get' },
{ label: 'kosh search', slug: 'reference/commands/search' },
{ label: 'kosh update', slug: 'reference/commands/update' },
{ label: 'kosh delete', slug: 'reference/commands/delete' },
{ label: 'kosh use', slug: 'reference/commands/use' },
{ label: 'kosh profile', slug: 'reference/commands/profile' },
{ label: 'kosh copy', slug: 'reference/commands/copy' },
{ label: 'kosh completion', slug: 'reference/commands/completion' },
],
},
{ label: 'Configuration & Files', slug: 'reference/configuration' },
{ label: 'Troubleshooting', slug: 'reference/troubleshooting' },
],
},
{
label: 'Technical Documentation',
items: [
{ label: 'Architecture', slug: 'technical/architecture' },
{ label: 'Encryption Architecture', slug: 'technical/encryption' },
{ label: 'Adaptive Search Algorithm', slug: 'technical/adaptive-search' },
],
},
],
}),
],
});