-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
82 lines (79 loc) · 2.7 KB
/
astro.config.mjs
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://docs.evermeet.app',
integrations: [
starlight({
title: 'evermeet 🔥 docs',
social: {
github: 'https://github.com/evermeet/evermeet',
},
sidebar: [
{
label: 'Introduction',
items: [
{ label: 'Getting Started', link: '/' },
{ label: 'Why evermeet?', link: '/why-evermeet' },
],
},
{
label: 'Features',
items: [
{ label: 'Events & Calendars', link: '/features/events-calendars' },
{ label: 'Ticket Sales and Registration', link: '/features/tickets-registration' },
{ label: 'Speakers and Program', link: '/features/speaker-management' },
{ label: 'Hackathon Features', link: '/features/hackathon' },
{ label: 'For Attendees', link: '/features/for-attendees' },
]
},
{
label: 'Deployment',
items: [
{ label: 'Deployment Methods', link: '/deployment/methods' },
/*{ label: 'Third-party Hosting', link: '/deployment/third-parties' },*/
{ label: 'Docker (recommended)', link: '/deployment/docker' },
{ label: 'Manual Deployment', link: '/deployment/manual' },
]
},
{
label: 'Operation Manual',
items: [
{ label: 'Instance Configuration', link: '/operation/configuration' },
/*{ label: 'Backup & Restore', link: '/operation/backup' },*/
/*{ label: 'Command-line Tool (cli)', link: '/operation/cli' },*/
/*{ label: 'Performance Optimization', link: '/operation/performance' },*/
/*{ label: 'Common Issues and Solutions', link: '/operation/common-issues' },*/
]
},
{
label: 'Specs',
items: [
{ label: 'Federation', link: '/specs/federation' },
{ label: 'Lexicon', link: '/specs/lexicon' },
{ label: 'Identifier (DID)', link: '/specs/did' },
{ label: 'HTTP API (XRPC)', link: '/specs/xrpc' },
/*{ label: 'Communication Protocol', link: '/federation/protocol' },*/
]
},
/*{
label: 'Release Notes',
items: [
{ label: 'Version History', link: '/release-notes/version-history' },
{ label: 'Future Plans', link: '/release-notes/future-plans' }
]
},*/
{
label: 'Developers',
items: [
{ label: 'System Architecture', link: '/developers/system-architecture' },
/*{ label: 'Contributing Guidelines', link: '/developers/contributing' },*/
{ label: 'Local Development Setup', link: '/developers/local-setup' },
/*{ label: 'Client Libraries', link: '/developers/libraries' },*/
/*{ label: 'API Reference', link: '/developers/api-endpoints' },*/
]
},
],
}),
],
});