1
0
mirror of synced 2026-01-27 07:02:03 -05:00
Files
airbyte/docs/connector-development/config-based/tutorial/1-create-source.md
Nataly Merezhuk 7bc911ef2a 📖 Removes $ from terminal commands to allow direct copying. (#17467)
* Removes $ from terminal commands to allow direct copying.

* Fixes build by adding missing link.
2022-09-30 11:54:50 -04:00

1.1 KiB

Step 1: Generate the source connector project locally

Let's start by cloning the Airbyte repository:

git clone git@github.com:airbytehq/airbyte.git
cd airbyte

Airbyte provides a code generator which bootstraps the scaffolding for our connector.

cd airbyte-integrations/connector-templates/generator
./generate.sh

This will bring up an interactive helper application. Use the arrow keys to pick a template from the list. Select the Configuration Based Source template and then input the name of your connector. The application will create a new directory in airbyte/airbyte-integrations/connectors/ with the name of your new connector.

Configuration Based Source
Source name: exchange-rates-tutorial

For this walkthrough, we'll refer to our source as exchange-rates-tutorial.

Next steps

Next, we'll install dependencies required to run the connector

More readings