1
0
mirror of synced 2026-01-14 21:06:21 -05:00

rename toy connector tutorial to "Build a connector the hard way" (#3421)

This commit is contained in:
Sherif A. Nada
2021-05-17 13:31:25 -07:00
committed by GitHub
parent 2e35fa4c21
commit 137845a28e
6 changed files with 14 additions and 17 deletions

View File

@@ -507,7 +507,7 @@ You should see that only the record from the last date is being synced! This is
With that, we've implemented incremental sync for our connector!
### Step 7: Use the connector in Airbyte
To use your connector in your own installation of Airbyte, build the docker image for your container by running `docker build . -t airbyte/source-python-http-example:dev`. Then, follow the instructions from the [building a toy source tutorial](https://docs.airbyte.io/tutorials/toy-connector#use-the-connector-in-the-airbyte-ui) for using the connector in the Airbyte UI, replacing the name as appropriate.
To use your connector in your own installation of Airbyte, build the docker image for your container by running `docker build . -t airbyte/source-python-http-example:dev`. Then, follow the instructions from the [building a connector the hard way tutorial](https://docs.airbyte.io/tutorials/toy-connector#use-the-connector-in-the-airbyte-ui) for using the connector in the Airbyte UI, replacing the name as appropriate.
Note: your built docker image must be accessible to the `docker` daemon running on the Airbyte node. If you're doing this tutorial locally, these instructions are sufficient. Otherwise you may need to push your Docker image to Dockerhub.