Open sherifnada opened 2 years ago
+100!
Other ideas I've thought of, related:
pip install airbyte-connector-source-acceptance-tests
. Same deal for destinations, etc. airbyte-connector-template
repo and have people clone it, rename it, set an alternate remote to their own github acccount, and use pre-existing templates. Another way to remove the need to clone airbyte's main repo. Probably lots of build dependency stuff from airbyte core that needs to be reworked to support extracting so much stuff out of the main repo for this vision.
Yup agreed on a lot of the functionality proposed here. We can probably do these things separately (improve the generator is separate from splitting it out of the airbyte repo, though one could copy a file/directory directly out of the GitHub monorepo instead of clone the whole repo). I would love to find a path that doesn't require airbyte devs to work across two/more repos if possible.
To give a sense of urgency to this ticket: cloning the repo now takes more than one minute, which is not a good first step for first-time connector developers.
Stumbled into this while doing my research. Can someone guide me and let me know if the following is possible at the moment please.
airbyte-integrations/connectors
) to be pulled and everything else that is not relevant to the generator.
cd airbyte-integrations/connector-templates/generator
./generate.sh
generate.sh
bypass the interactive helper application and pass the template
and connector name
as arguments directly.For some context I am building a script which will automate the generation of a connector, copies a manifest file and pushes the connector as a Docker image to a repository.
Tell us about the problem you're trying to solve
Today connectors generated via the connector development process are created inside the Airbyte repository. It is not well documented or supported how a developer can decouple this code from the Airbyte repo, taking into account not only which repo the code lives in, but especially CI/CD. All of this must be setup from scratch in a custom way by the connector developer. This inhibits the adoption of custom connectors via Airbyte, as the monorepo becomes a bottleneck.
Describe the solution you’d like
I want the connector generator: