Skip to content

Commit 0cef507

Browse files
nataliekwongevantahler
authored andcommitted
[Docs] Create homepage for Sources/Destinations (#34391)
Co-authored-by: Evan Tahler <[email protected]>
1 parent a0811b1 commit 0cef507

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

docs/connector-development/connector-builder-ui/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Developer updates will be announced via our #help-connector-development Slack ch
1313

1414
The connector builder is the right tool if the following points are met:
1515
* You want to integrate with a JSON-based HTTP API as a source of records
16-
* The API you want to integrate with doesn't exist yet as a connector in the [connector catalog](/category/sources).
16+
* The API you want to integrate with doesn't exist yet as a connector in the [connector catalog](/integrations/sources/).
1717
* The API is suitable for the connector builder as per the
1818
[compatibility guide](./connector-builder-compatibility.md).
1919

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import ConnectorRegistry from '@site/src/components/ConnectorRegistry';
2+
3+
# Destinations
4+
5+
A destination is a data warehouse, data lake, database, or an analytics tool where you want to load your ingested data.
6+
7+
Read more about our [Connector Support Levels](/integrations/connector-support-levels) to understand what to expect from a connector.
8+
9+
10+
## Destinations
11+
12+
<ConnectorRegistry type="destination"/>
13+
14+
_[View the connector registry in full](/integrations)_

docs/integrations/sources/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import ConnectorRegistry from '@site/src/components/ConnectorRegistry';
2+
3+
# Sources
4+
5+
A source is an API, file, database, or data warehouse that you want to ingest data from.
6+
7+
Read more about our [Connector Support Levels](/integrations/connector-support-levels) to understand what to expect from a connector.
8+
9+
## Sources
10+
11+
<ConnectorRegistry type="source"/>
12+
13+
_[View the connector registry in full](/integrations)_

docusaurus/sidebars.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,15 +272,17 @@ const connectorCatalog = {
272272
type: "category",
273273
label: "Sources",
274274
link: {
275-
type: "generated-index",
275+
type: "doc",
276+
id: "integrations/sources/README",
276277
},
277278
items: [sourcePostgres, sourceMysql, ...getSourceConnectors()].sort((itemA, itemB) => itemA.label.localeCompare(itemB.label)),
278279
},
279280
{
280281
type: "category",
281282
label: "Destinations",
282283
link: {
283-
type: "generated-index",
284+
type: "doc",
285+
id: "integrations/destinations/README",
284286
},
285287
items: getDestinationConnectors(),
286288
},

0 commit comments

Comments
 (0)