-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathen.ts
More file actions
154 lines (148 loc) · 4.9 KB
/
en.ts
File metadata and controls
154 lines (148 loc) · 4.9 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import { defineConfig, type DefaultTheme } from "vitepress";
import pkg from "../../package.json";
export const en = defineConfig({
lang: "en-US",
description:
"Lightweight server monitoring with historical data, Docker stats, and alerts.",
themeConfig: {
nav: nav(),
sidebar: {
"/guide/": { base: "/guide/", items: sidebarGuide() },
},
editLink: {
pattern: "https://github.com/henrygd/beszel-docs/edit/main/:path",
text: "Edit this page on GitHub",
},
footer: {
message: "Released under the MIT License",
},
},
});
function nav(): DefaultTheme.NavItem[] {
return [
{
text: "Guide",
link: "/guide/what-is-beszel",
activeMatch: "/guide/",
},
{
text: pkg.version,
items: [
{
text: "Releases",
link: "https://github.com/henrygd/beszel/releases",
},
{
text: "New Issue",
link: "https://github.com/henrygd/beszel/issues/new/choose",
},
],
},
];
}
function sidebarGuide(): DefaultTheme.SidebarItem[] {
return [
{
text: "Introduction",
collapsed: false,
items: [
{ text: "What is Beszel?", link: "what-is-beszel" },
{ text: "Getting Started", link: "getting-started" },
],
},
{
text: "Installation",
collapsed: false,
items: [
{ text: "Hub Installation", link: "hub-installation" },
{ text: "Agent Installation", link: "agent-installation" },
{ text: "Advanced Deployment", link: "advanced-deployment" },
],
},
{
text: "Configuration / Guides",
collapsed: false,
items: [
{ text: "Additional Disks", link: "additional-disks" },
{ text: "Compiling", link: "compiling" },
{ text: "Environment Variables", link: "environment-variables" },
{ text: "GPU Monitoring", link: "gpu" },
{ text: "Healthchecks", link: "healthchecks" },
{
text: "Notifications",
link: "notifications",
collapsed: true,
items: [
{ text: "Generic", link: "/notifications/generic" },
{ text: "Bark", link: "/notifications/bark" },
{ text: "Discord", link: "/notifications/discord" },
{ text: "Gotify", link: "/notifications/gotify" },
{ text: "Google Chat", link: "/notifications/googlechat" },
{ text: "IFTTT", link: "/notifications/ifttt" },
{ text: "Join", link: "/notifications/join" },
{ text: "Lark", link: "/notifications/lark" },
{ text: "Mattermost", link: "/notifications/mattermost" },
{ text: "Matrix", link: "/notifications/matrix" },
{ text: "Ntfy", link: "/notifications/ntfy" },
{ text: "OpsGenie", link: "/notifications/opsgenie" },
{ text: "Pushbullet", link: "/notifications/pushbullet" },
{ text: "Pushover", link: "/notifications/pushover" },
{ text: "Rocketchat", link: "/notifications/rocketchat" },
{ text: "Signal", link: "/notifications/signal" },
{ text: "Slack", link: "/notifications/slack" },
{ text: "Teams", link: "/notifications/teams" },
{ text: "Telegram", link: "/notifications/telegram" },
{ text: "WeCom", link: "/notifications/wecom" },
{ text: "Zulip Chat", link: "/notifications/zulip" },
],
},
{ text: "OAuth / OIDC", link: "oauth" },
{ text: "Podman Monitoring", link: "podman" },
{ text: "REST API", link: "rest-api" },
{ text: "Reverse Proxy", link: "reverse-proxy" },
{ text: "S.M.A.R.T. Data", link: "smart-data" },
{ text: "Systemd Services", link: "systemd" },
{ text: "User Accounts", link: "user-accounts" },
{
text: "Third-Party Integrations",
collapsed: true,
items: [
{
text: "Home Assistant Agent",
link: "/third-party-integrations/home-assistant",
},
{
text: "Mobile Applications",
link: "/third-party-integrations/mobile-apps",
},
{
text: "Synology Agent Package",
link: "/third-party-integrations/synology-package",
},
],
},
],
},
{
text: "Troubleshooting",
collapsed: false,
items: [
{ text: "Common Issues", link: "common-issues" },
{ text: "Docker Shell", link: "docker-shell.md" },
],
},
{
text: "About",
collapsed: false,
items: [
{ text: "Developer Guide", link: "developer-guide" },
{
text: "Multilingual and Localization",
link: "multlingual-and-localization",
},
{ text: "Security Information", link: "security" },
{ text: "Support / Discussion", link: "support-discussion" },
],
},
];
}