-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.fdocs.js
69 lines (68 loc) · 1.98 KB
/
.fdocs.js
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
import config from "@factorial/docs/config.js";
export default function (defaultConfig) {
return config(defaultConfig, {
projectName: "Phabalicious",
input: "docs",
output: "docs/_site",
githubUrl: "https://github.com/factorial-io/phabalicious",
twitter: "@phabalicious",
openSource: true,
heroImage: {
src: "/assets/hero.png",
width: 720,
height: 600,
},
logo: {
src: "/assets/logo.svg",
width: 115,
height: 30,
},
footerLogo: {
src: "/assets/logo-white.svg",
width: 115,
height: 30,
},
algolia: {
appId: "BH4D9OD16A",
apiKey: "69abc87124806b56252e00022c94f392",
indexName: "phab",
},
menu: [
{
path: "documentation",
children: [
"guide",
"installation",
"usage",
"configuration",
"commands",
"inheritance",
"docker-integration",
"workspace",
"scripts",
"scaffolder",
"app-scaffold",
"app-create-destroy",
"deploying-artifacts",
"kubernetes",
"offsite-backups",
"local-overrides",
"passwords",
"contribute",
],
},
{
path: "blog",
children: [
"introduction",
"architecture",
"whats-new-in-phab-3-7",
"how-to-use-secrets",
"how-to-use-phab-beta-in-parallel",
"whats-new-in-phab-3-8",
],
},
"changelog",
],
});
}