Skip to main content

Runtime vs SDK

Build a Qefro Marketplace App with metadata.

A Marketplace App is a declarative application package. Qefro Runtime executes the application's entities, UI, workflows, events, automations, and business operations.

Use the Qefro SDK only when your application needs to connect Qefro to an external system whose data or business logic lives outside Qefro.

Marketplace App

Metadata Package

Qefro Plugin Platform (catalog, install, versioning)

Qefro Runtime
├── UI Runtime
├── FlowRunner
└── Data Runtime
External ERP / POS / CRM

Qefro SDK

SDKAdapter

Qefro Runtime

There is no Marketplace App /qefro backend. You do not write an SDK server to ship Restaurant, Clinic, Real Estate, Booking, or CRM apps.

Comparison

Marketplace AppExternal Integration
DefinitionMetadataSDK
RuntimeQefro RuntimeExternal server
Business logicQefro RuntimeCustomer system
StorageQefro managed storageExternal system
ToolsRuntime capabilitiesSDK capabilities
EventsRuntime eventsSDK events
FlowQefro FlowRunnerQefro FlowRunner + SDKAdapter

Marketplace App

A Qefro Marketplace App is a declarative package (hosting: runtime). qefro-plugin-platform validates, stores, versions, and installs it. Qefro Runtime executes it.

  • No src/, no Dockerfile, no /qefro process.
  • Entities live under entities/; UI under ui/; flows under workflows/.
  • Tools are Runtime capabilities such as entity.reservation.create.
  • Contacts stay on the platform Person CRM (host: contacts). Automations stay on the platform CRM Automation host (host: automations).

Canonical packages:

Start: Build your first app.

External Integration

Use the Qefro SDK when the system of record already lives outside Qefro — Focus ERP, Yaaz, ABM, an on-prem POS, a customer CRM.

Customer ERP / POS / CRM


SDK process POST /qefro


Qefro Runtime (FlowRunner + SDKAdapter)

The SDK advertises tools, events, and optional flow metadata. FlowRunner still owns orchestration; an SDKAdapter invokes the customer's /qefro tools. Storage stays in the external system unless you explicitly use ctx.storage.

hosting: managed (a platform-hosted /qefro Marketplace App) is not supported. Register an SDK Connection instead.

Start: External SDK Connection.

Hosting values

manifest.hostingWhat it isWhen to use
runtimeMetadata Marketplace App. No SDK process.Every Marketplace App
externalYou run /qefro; Qefro binds the URLSDK Connection to an external system