THIS IS A TEMPLATE REPO FOR NEW RESHUFFLE CONNECTORS
-
Create a new connector repo from this template using this link https://github.com/reshufflehq/reshuffle-template-connector/generate
-
Clone the repo locally
-
Rename all occurrences of CONNECTOR_NAME
-
npm install
-
npm run build:watch
-
Implement your events/actions in
src/index.ts
-
npm run lint
-
Push your code
-
Go to https://app.circleci.com/projects/project-dashboard/github/reshufflehq/ a. You should see your new connector repo b. click on
Set Up Project
for the repo c. click onUse Existing Config
d. click onStart Building
-
If circle CI checks are all green, you are all set!
// Keep documentation template below
This connector provides .
interface _CONNECTOR_NAME_ConnectorConfigOptions {
foo: string // foo description
bar?: number // bar description
}
The connector fires this event when ...
The connector fires this event when ...
The connector provides action1 which ...
The connector provides action2 which ...