Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide example of custom Conduit with the CLI included #2150

Closed
hariso opened this issue Feb 12, 2025 · 0 comments · Fixed by #2180
Closed

Provide example of custom Conduit with the CLI included #2150

hariso opened this issue Feb 12, 2025 · 0 comments · Fixed by #2180
Labels
feature New feature or request
Milestone

Comments

@hariso
Copy link
Contributor

hariso commented Feb 12, 2025

Feature description

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"
)

func main() {
	// Get the default configuration, including all built-in connectors
	cfg := conduit.DefaultConfig()

	// Add the HTTP connector to list of built-in connectors
	cfg.ConnectorPlugins["http"] = http.Connector

	conduit.Serve(cfg)
}

(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.

@hariso hariso added feature New feature or request triage Needs to be triaged labels Feb 12, 2025
@hariso hariso added this to the Next milestone Feb 19, 2025
@hariso hariso removed the status in Conduit Main Feb 19, 2025
@hariso hariso removed the triage Needs to be triaged label Feb 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant