The workflow server
Create the Server
from pydantic import BaseModel
from integrations_sdk.server import start_workflow_server
class Options(BaseModel):
notSecret: str
class Secrets(BaseModel):
secret: str
app = start_workflow_server(
"fns",
"http://localhost:9000",
"engine-api-key",
Options,
Secrets,
install_instructions="Docs on point, README magic",
docs="My docs",
auth_token="optional-shared-token",
)Setting Up the Server for Development
Starting the Server
What the Server Exposes
Setting Up Your Server for Production
What's Next?
Last updated
Was this helpful?

