Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.23 KB

README.md

File metadata and controls

37 lines (29 loc) · 1.23 KB

Ink: a CLI to build Airbyte Connectors

MIT License Tests Status Join Our Slack Latest Version

alt text

ink creates, builds, tests and manages your Airbyte connector.

Introduction

To install ink:

CONNECTOR_NAME=my-amazing-connector
mkdir source-$CONNECTOR_NAME 
cd source-$CONNECTOR_NAME
curl -fsSLO https://tools.airbyte.com/ink && chmod +x ink

Start using ink:

./ink init $CONNECTOR_NAME
./ink generate --type source-declarative
./ink install
./ink run spec
./ink --help

Happy Coding!!

For maintainers

Release a new version

  1. Create release PR: ./tools/tag.sh pr (major|minor|patch)
  2. After the PR is merged, grab the release PR merge id
  3. Tag the merge: ./tools/tag.sh tag [merge id]