-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnavigation.php
More file actions
54 lines (53 loc) · 1.69 KB
/
navigation.php
File metadata and controls
54 lines (53 loc) · 1.69 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
<?php
return [
'Getting Started' => [
'url' => '/docs/getting-started',
'children' => [
'Introduction' => '/docs/introduction',
'Installation' => '/docs/getting-started/',
'Create a domain' => '/docs/getting-started/create-domain/',
'Move forward' => '/docs/getting-started/moving-forward/',
'Troubleshooting' => '/docs/getting-started/troubleshooting/',
],
],
'Deploy' => [
'url' => '/docs/repository',
'children' => [
'Repository' => '/docs/repository',
'Webhooks' => '/docs/webhooks',
]
],
'Commands' => [
'url' => '/docs/commands/domains',
'children' => [
'Domains' => '/docs/commands/domains',
'Deploy' => '/docs/commands/deploy',
'Databases' => '/docs/commands/databases',
'Backups' => '/docs/commands/backups',
'Alarms' => '/docs/commands/alarms',
'System' => '/docs/commands/system',
'Upgrade' => '/docs/upgrade'
]
],
'Platform' => [
'url' => '/docs/platform/compatibility',
'children' => [
'Compatibility' => '/docs/platform/compatibility',
'Software' => '/docs/platform/software',
'Security' => '/docs/platform/security',
'Roadmap' => '/docs/roadmap'
]
],
'Advanced' => [
'url' => '/docs/advanced/installer',
'children' => [
'Installer' => '/docs/advanced/installer'
]
],
'About' => [
'url' => '/docs/about',
'children' => [
'Contribute' => '/docs/contribute'
]
]
];