Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/cn/Integrations/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Integrations
slug: /
---

# Integrations

Databend integrations are organized by their support level:

**Core integrations**: built or maintained by Databend, they are supported by Databend and live in the Databend GitHub organization

**Partner integrations**: built or maintained, and supported by, third-party software vendors

**Community integrations**: built or maintained and supported by community members. No direct support is available besides the public GitHub repositories and community Slack channels

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.
16 changes: 16 additions & 0 deletions docs/en/integrations/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Integrations
slug: /
---

# Integrations

Databend integrations are organized by their support level:

**Core integrations**: built or maintained by Databend, they are supported by Databend and live in the Databend GitHub organization

**Partner integrations**: built or maintained, and supported by, third-party software vendors

**Community integrations**: built or maintained and supported by community members. No direct support is available besides the public GitHub repositories and community Slack channels

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.
18 changes: 18 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,19 @@ const config: Config = {
},
},
],
[
"@docusaurus/plugin-content-docs",
/** @type {import('@docusaurus/plugin-content-docs').Options} */
{
id: "integrations",
path: `./docs/${site}/integrations`,
routeBasePath: "integrations",
sidebarPath: require.resolve("./docs/en/sidebars.js"),
editUrl: ({ locale, docPath }) => {
return `https://github.com/databendlabs/databend-docs/edit/main/docs/${site}/integrations/${docPath}`;
},
},
],
[
"docusaurus-plugin-devserver",
{
Expand Down Expand Up @@ -243,6 +256,11 @@ const config: Config = {
label: "SQL Reference",
position: "right",
},
{
to: "/integrations/",
label: "Integrations",
position: "right",
},
{
to: "/release-notes/",
label: "Releases",
Expand Down
Loading