Skip to main content

Quickstart 3: Deploy Workflows

Your workflow is now ready to be deployed. This can be done in several different ways: via code, via API, or using the Orkes Platform.

In this quickstart, you will learn how to deploy your workflow via code.

// synchronous execution - applicable for quick-running workflows (0--30 seconds)


from conductor.client.http.models import StartWorkflowRequest

request = StartWorkflowRequest()
request.name = 'hello'
request.version = 1
request.input = {'name': 'Orkes'}

workflow_run = workflow_client.execute_workflow(
start_workflow_request=request,
wait_for_seconds=12)

Ready to dive deeper? Learn more about running workflows