Pradyumna Thakur Deshmukh
10/04/2022, 3:13 PMthen follow the interactive prompt. Next, find all `TODO`s in the generated project directory -- they're accompanied by lots of comments explaining what you'll need to do in order to implement your connector. Upon completing all TODOs properly, you should have a functioning connector.I didn't encounter any interactive prompt - it just says "Finished running generator" (see screenshot 🧵 ). And where is the "generated project directory"?
Sunny Hashmi (Airbyte)
10/04/2022, 3:28 PM./generate.sh
script should ask you which kind of connector you want to create, as well as ask you to input the connector's name.
When generated, your new connector's directory can be found in airbyte/airbyte-integrations/connectors/source-<connector-name>
if it's a source connector or airbyte/airbyte-integrations/connectors/destination-<connector-name>
if it's a destination connector. There should be a readme in there with more info, and the TODOs will be found as comments in files within that dir.user
10/04/2022, 3:50 PMEli Sigal
10/04/2022, 5:25 PMnpm run generate
command to get started you need to go to
airbyte-integrations\connectors\your-connector-nameonce you are there you can start building the source or destination.