-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathastro.config.mjs
More file actions
101 lines (99 loc) · 2.68 KB
/
Copy pathastro.config.mjs
File metadata and controls
101 lines (99 loc) · 2.68 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import rehypeMermaid from 'rehype-mermaid';
const isNetlify = !!process.env.NETLIFY;
export default defineConfig({
site: isNetlify
? process.env.URL
: 'https://ambient-code.github.io',
base: isNetlify ? '/' : '/platform/',
integrations: [
starlight({
title: 'Ambient Code Platform',
favicon: '/favicon.ico',
description:
'AI-powered automation platform for intelligent agentic workflows',
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/ambient-code/platform',
},
],
editLink: {
baseUrl:
'https://github.com/ambient-code/platform/edit/main/docs/',
},
sidebar: [
{
label: 'Getting Started',
items: [
{ slug: 'getting-started' },
{ slug: 'getting-started/quickstart-ui' },
{ slug: 'getting-started/concepts' },
{ slug: 'getting-started/cli' },
],
},
{
label: 'Core Concepts',
items: [
{ slug: 'concepts/workspaces' },
{ slug: 'concepts/sessions' },
{ slug: 'concepts/integrations' },
{ slug: 'concepts/context-and-artifacts' },
{ slug: 'concepts/workflows' },
{ slug: 'concepts/scheduled-sessions' },
],
},
{
label: 'Workflows',
items: [
{ slug: 'workflows' },
{ slug: 'workflows/bugfix' },
{ slug: 'workflows/triage' },
{ slug: 'workflows/spec-kit' },
{ slug: 'workflows/prd-rfe' },
{ slug: 'workflows/custom' },
],
},
{
label: 'Features',
items: [
{ slug: 'features/session-sharing' },
],
},
{
label: 'Guides',
items: [
{ slug: 'guides/migrating-shared-sessions' },
],
},
{
label: 'Extensions',
items: [
{ slug: 'extensions/github-action' },
{ slug: 'extensions/mcp-server' },
{ slug: 'extensions/public-api' },
],
},
{
label: 'Toolbox',
items: [
{ slug: 'ecosystem/amber' },
{ slug: 'ecosystem/agentready' },
],
},
{
label: 'Development',
items: [
{ slug: 'development' },
],
},
],
customCss: ['./src/styles/custom.css'],
}),
],
markdown: {
rehypePlugins: [[rehypeMermaid, { strategy: 'inline-svg' }]],
},
});