Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Create homepage for Sources/Destinations #34391

Merged
merged 24 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
11ef902
readme
nataliekwong Jan 19, 2024
4ec8ddb
redirect
nataliekwong Jan 19, 2024
c8250ab
readme
nataliekwong Jan 19, 2024
afebed7
remove readme?
nataliekwong Jan 19, 2024
136947f
destination test
nataliekwong Jan 19, 2024
465a653
remove
nataliekwong Jan 19, 2024
a1618fe
make homepages
nataliekwong Jan 19, 2024
f75cd2b
fix redirect
nataliekwong Jan 19, 2024
a720469
Update docs/integrations/sources/README.md
nataliekwong Jan 19, 2024
4035f1f
Update docs/integrations/destinations/README.md
nataliekwong Jan 19, 2024
1e6ead5
remove space
nataliekwong Jan 20, 2024
cc3b2a9
remove spaces
nataliekwong Jan 20, 2024
82220b9
Merge branch 'master' into natalie/catalog-pages
nataliekwong Jan 20, 2024
78797bf
Update docs/integrations/destinations/README.md
nataliekwong Jan 20, 2024
dd8a761
Update docs/integrations/sources/README.md
nataliekwong Jan 22, 2024
1555279
Merge branch 'master' into natalie/catalog-pages
nataliekwong Feb 8, 2024
21eb3b1
Kat updates
nataliekwong Feb 8, 2024
e96051b
katupdates
nataliekwong Feb 8, 2024
80d77ad
Update docs/connector-development/connector-builder-ui/overview.md
nataliekwong Feb 9, 2024
9d1d25f
Update docs/integrations/destinations/README.md
nataliekwong Feb 9, 2024
04e1cd1
Update docs/integrations/sources/README.md
nataliekwong Feb 9, 2024
23ec4e1
Merge branch 'master' into natalie/catalog-pages
nataliekwong Feb 9, 2024
8007415
Merge branch 'master' into natalie/catalog-pages
evantahler Feb 9, 2024
bb9b614
Merge branch 'master' into natalie/catalog-pages
nataliekwong Feb 9, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Developer updates will be announced via our #help-connector-development Slack ch

The connector builder is the right tool if the following points are met:
* You want to integrate with a JSON-based HTTP API as a source of records
* The API you want to integrate with doesn't exist yet as a connector in the [connector catalog](/category/sources).
* The API you want to integrate with doesn't exist yet as a connector in the [connector catalog](/integrations/sources/README.md).
nataliekwong marked this conversation as resolved.
Show resolved Hide resolved
* The API is suitable for the connector builder as per the
[compatibility guide](./connector-builder-compatibility.md).

Expand Down
14 changes: 14 additions & 0 deletions docs/integrations/destinations/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import ConnectorRegistry from '@site/src/components/ConnectorRegistry';

# Destinations

A destination is a data warehouse, data lake, database, or an analytics tool where you want to load your ingested data.

Read more about our [Connector Support Levels](/integrations/connector-support-levels.md) to understand what to expect from a connector.
nataliekwong marked this conversation as resolved.
Show resolved Hide resolved


## Destinations

<ConnectorRegistry type="destination"/>

_[View the connector registry in full](/integrations)_
13 changes: 13 additions & 0 deletions docs/integrations/sources/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import ConnectorRegistry from '@site/src/components/ConnectorRegistry';

# Sources

A source is an API, file, database, or data warehouse that you want to ingest data from.

Read more about our [Connector Support Levels](/integrations/connector-support-levels.md) to understand what to expect from a connector.
nataliekwong marked this conversation as resolved.
Show resolved Hide resolved

## Sources

<ConnectorRegistry type="source"/>

_[View the connector registry in full](/integrations)_
6 changes: 4 additions & 2 deletions docusaurus/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,15 +272,17 @@ const connectorCatalog = {
type: "category",
label: "Sources",
link: {
type: "generated-index",
type: "doc",
id: "integrations/sources/README",
},
items: [sourcePostgres, sourceMysql, ...getSourceConnectors()].sort((itemA, itemB) => itemA.label.localeCompare(itemB.label)),
},
{
type: "category",
label: "Destinations",
link: {
type: "generated-index",
type: "doc",
id: "integrations/destinations/README",
},
items: getDestinationConnectors(),
},
Expand Down
Loading