Skip to content

Commit 5fd4298

Browse files
authored
feat: Add integration tab (#2677)
* feat: add "Intergrations" tab * path * path
1 parent c294dee commit 5fd4298

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

docs/cn/Integrations/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Integrations
3+
slug: /
4+
---
5+
6+
# Integrations
7+
8+
Databend integrations are organized by their support level:
9+
10+
**Core integrations**: built or maintained by Databend, they are supported by Databend and live in the Databend GitHub organization
11+
12+
**Partner integrations**: built or maintained, and supported by, third-party software vendors
13+
14+
**Community integrations**: built or maintained and supported by community members. No direct support is available besides the public GitHub repositories and community Slack channels
15+
16+
Each integration is further categorized into [Language client](/developer/), [Data ingestion](/guides/load-data/load-db/), [Data visualization](/guides/visualize/) and [SQL client](/guides/sql-clients/) categories.

docs/en/integrations/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: Integrations
3+
slug: /
4+
---
5+
6+
# Integrations
7+
8+
Databend integrations are organized by their support level:
9+
10+
**Core integrations**: built or maintained by Databend, they are supported by Databend and live in the Databend GitHub organization
11+
12+
**Partner integrations**: built or maintained, and supported by, third-party software vendors
13+
14+
**Community integrations**: built or maintained and supported by community members. No direct support is available besides the public GitHub repositories and community Slack channels
15+
16+
Each integration is further categorized into [Language client](/developer/), [Data ingestion](/guides/load-data/load-db/), [Data visualization](/guides/visualize/) and [SQL client](/guides/sql-clients/) categories.

docusaurus.config.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,19 @@ const config: Config = {
168168
},
169169
},
170170
],
171+
[
172+
"@docusaurus/plugin-content-docs",
173+
/** @type {import('@docusaurus/plugin-content-docs').Options} */
174+
{
175+
id: "integrations",
176+
path: `./docs/${site}/integrations`,
177+
routeBasePath: "integrations",
178+
sidebarPath: require.resolve("./docs/en/sidebars.js"),
179+
editUrl: ({ locale, docPath }) => {
180+
return `https://github.com/databendlabs/databend-docs/edit/main/docs/${site}/integrations/${docPath}`;
181+
},
182+
},
183+
],
171184
[
172185
"docusaurus-plugin-devserver",
173186
{
@@ -243,6 +256,11 @@ const config: Config = {
243256
label: "SQL Reference",
244257
position: "right",
245258
},
259+
{
260+
to: "/integrations/",
261+
label: "Integrations",
262+
position: "right",
263+
},
246264
{
247265
to: "/release-notes/",
248266
label: "Releases",

0 commit comments

Comments
 (0)