Zebflow Documentation

Quick Start

Create your first Zebflow project and pipeline

Quick Start

1. Log in

Navigate to http://localhost:10610/login and sign in with your credentials.

2. Create a project

After login you land on /home. Click New Project to create one, or use the default project.

3. Register a pipeline

Use the DSL endpoint or MCP to register your first pipeline:

register pipelines/hello.zf.json
--
| trigger.webhook --path /hello --method GET
| transform.set --field message --value "Hello from Zebflow!"

4. Activate and test

activate pipeline pipelines/hello.zf.json
curl http://localhost:10610/wh/{owner}/{project}/hello
# → {"message":"Hello from Zebflow!"}