-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.config.ts
More file actions
62 lines (59 loc) · 1.92 KB
/
project.config.ts
File metadata and controls
62 lines (59 loc) · 1.92 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
export interface SidebarVolume {
name: string;
srcDir: string;
urlPrefix: string;
}
export interface ProjectConfig {
name: string;
title: string;
description: string;
base: string;
documentsDir: string;
github: {
owner: string;
repo: string;
branch: string;
documentsPath: string;
};
nav: Array<{ text: string; link: string }>;
sidebar: {
volumes: SidebarVolume[];
};
}
const projectConfig: ProjectConfig = {
name: "CFDesktop",
title: "CFDesktop 文档",
description: "面向嵌入式设备的 Qt / Material Design 3 桌面框架",
base: "/CFDesktop/",
documentsDir: "document",
github: {
owner: "Awesome-Embedded-Learning-Studio",
repo: "CFDesktop",
branch: "develop",
documentsPath: "document"
},
nav: [
{ text: "首页", link: "/" },
{ text: "状态", link: "/status/current" },
{ text: "开发", link: "/development/" },
{ text: "架构", link: "/design_stage/system_architecture_overview" },
{ text: "桌面路线图", link: "/todo/desktop/" },
{ text: "手册", link: "/HandBook/" },
{ text: "GitHub", link: "https://github.com/Awesome-Embedded-Learning-Studio/CFDesktop" }
],
sidebar: {
volumes: [
{ name: "development", srcDir: "development", urlPrefix: "/development" },
{ name: "status", srcDir: "status", urlPrefix: "/status" },
{ name: "ci", srcDir: "ci", urlPrefix: "/ci" },
{ name: "architecture", srcDir: "design_stage", urlPrefix: "/design_stage" },
{ name: "desktop", srcDir: "desktop", urlPrefix: "/desktop" },
{ name: "handbook", srcDir: "HandBook", urlPrefix: "/HandBook" },
{ name: "todo", srcDir: "todo", urlPrefix: "/todo" },
{ name: "scripts", srcDir: "scripts", urlPrefix: "/scripts" },
{ name: "notes", srcDir: "notes", urlPrefix: "/notes" },
{ name: "release", srcDir: "release_rule", urlPrefix: "/release_rule" }
]
}
};
export default projectConfig;