diff --git a/docs/docs/docs/01-core/data-transfer/01-source-providers/00-overview.md b/docs/docs/docs/01-core/data-transfer/01-source-providers/00-overview.md index 9c0f1c7931..7b16704f15 100644 --- a/docs/docs/docs/01-core/data-transfer/01-source-providers/00-overview.md +++ b/docs/docs/docs/01-core/data-transfer/01-source-providers/00-overview.md @@ -8,4 +8,14 @@ tags: # Source Providers -TODO +Data transfer source providers provide a standardized interface and streams of data for each stage in a transfer intended to be consumed by destination providers. + +The following source providers are available within Strapi: + +- [Strapi File](./01-strapi-file.md): loads data from a Strapi data file +- [Local Strapi](./02-local-strapi.md): uses a local Strapi project to retrieve data from its configured database +- [Remote Strapi](./03-remote-strapi.md): accepts a websocket connection to a running instance of Strapi over a network to send data + +## Creating your own providers + +It is possible to create your own provider by providing the interface defined in ISourceProvider. Please see existing providers (such as the local strapi source provider) for an example. diff --git a/docs/docs/docs/01-core/data-transfer/01-source-providers/02-local-strapi copy.md b/docs/docs/docs/01-core/data-transfer/01-source-providers/02-local-strapi.md similarity index 100% rename from docs/docs/docs/01-core/data-transfer/01-source-providers/02-local-strapi copy.md rename to docs/docs/docs/01-core/data-transfer/01-source-providers/02-local-strapi.md diff --git a/docs/docs/docs/01-core/data-transfer/02-destination-providers/00-overview.md b/docs/docs/docs/01-core/data-transfer/02-destination-providers/00-overview.md index 595141734b..8c91e65c8a 100644 --- a/docs/docs/docs/01-core/data-transfer/02-destination-providers/00-overview.md +++ b/docs/docs/docs/01-core/data-transfer/02-destination-providers/00-overview.md @@ -8,4 +8,14 @@ tags: # Destination Providers -TODO +Data transfer destination providers provide a standardized interface and streams of data for each stage in a transfer intended to consume the stream provided by a source provider. + +The following destination providers are available within Strapi: + +- [Strapi File](./01-strapi-file.md): writes data to a Strapi data file +- [Local Strapi](./02-local-strapi.md): uses a local Strapi project to insert data into its configured database +- [Remote Strapi](./03-remote-strapi.md): accepts a websocket connection to a running instance of Strapi over a network to receive data + +## Creating your own providers + +It is possible to create your own provider by providing the interface defined in ISourceProvider. Please see existing providers (such as the local strapi source provider) for an example. diff --git a/docs/docs/docs/01-core/data-transfer/02-destination-providers/02-local-strapi copy.md b/docs/docs/docs/01-core/data-transfer/02-destination-providers/02-local-strapi copy.md index fa7ffb9a45..4684d9a7c3 100644 --- a/docs/docs/docs/01-core/data-transfer/02-destination-providers/02-local-strapi copy.md +++ b/docs/docs/docs/01-core/data-transfer/02-destination-providers/02-local-strapi copy.md @@ -1,5 +1,5 @@ --- -title: Local Strapi= +title: Local Strapi tags: - providers - data-transfer