You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our example/recommendation to implement a custom Conduit instance (e.g. with built-in connectors) is this:
package main
import (
http "github.com/conduitio-labs/conduit-connector-http""github.com/conduitio/conduit/pkg/conduit"
)
funcmain() {
// Get the default configuration, including all built-in connectorscfg:=conduit.DefaultConfig()
// Add the HTTP connector to list of built-in connectorscfg.ConnectorPlugins["http"] =http.Connectorconduit.Serve(cfg)
}
Feature description
Currently, our example/recommendation to implement a custom Conduit instance (e.g. with built-in connectors) is this:
(Taken from https://conduit.io/docs/using/connectors/additional-built-in-plugins/)
However, with the introduction of CLI, the example above won't include the CLI.
The goal of this issue is to provide a way to build a custom Conduit with the CLI included.
The text was updated successfully, but these errors were encountered: