-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
65 lines (64 loc) · 2.1 KB
/
astro.config.mjs
File metadata and controls
65 lines (64 loc) · 2.1 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: 'https://awac.ganemo.com',
integrations: [
starlight({
title: 'AWaC',
description: 'Agent Workspace as Code — declare, compose, sync.',
logo: { src: './src/assets/logo.svg', replacesTitle: false },
favicon: '/favicon.svg',
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/getGanemo/workspace-cli' },
],
editLink: {
baseUrl: 'https://github.com/getGanemo/awac-docs/edit/main/',
},
defaultLocale: 'root',
locales: {
root: { label: 'English', lang: 'en' },
},
sidebar: [
{
label: 'Start',
items: [
{ label: 'Getting started', slug: 'getting-started' },
{ label: 'Architecture', slug: 'architecture' },
],
},
{
label: 'Reference',
items: [
{ label: 'Manifest (workspace.yml)', slug: 'manifest-reference' },
{ label: 'Stack metadata (awac.yml)', slug: 'stack-reference' },
{ label: 'CLI (wsp)', slug: 'cli-reference' },
{ label: 'Templates', slug: 'templates' },
{ label: 'Agent context files', slug: 'agent-context-files' },
],
},
{
label: 'Guides',
items: [
{ label: 'Create a new stack', slug: 'creating-new-stack' },
{ label: 'Workspace repo layout', slug: 'workspace-repo' },
{ label: 'Migration from a fixed template', slug: 'migration-from-template' },
{ label: 'Deploy & secrets', slug: 'deploy-and-secrets' },
{ label: 'Governance', slug: 'governance' },
],
},
{
label: 'FAQ',
items: [
{ label: 'Frequently Asked Questions', slug: 'faq' },
],
},
{
label: 'Decisions (ADRs)',
collapsed: true,
autogenerate: { directory: 'decisions' },
},
],
customCss: ['./src/styles/custom.css'],
}),
],
});