Delete howto-workflow.md

This commit is contained in:
nyemade-uversky 2023-01-30 15:36:25 -07:00 committed by GitHub
parent 038603ed98
commit 4f7b0d88bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 47 deletions

View File

@ -1,47 +0,0 @@
---
type: docs
title: "How to: Manage your workflow"
linkTitle: "How to: Manage workflows"
weight: 2000
description: manage your workflows
---
Now that you've read about [the workflow building block]({{< ref workflow-overview >}}), learn more about how to manage a workflow.
When you run `dapr init`, Dapr creates a default workflow runtime. This component is written in Go and implements workflow instances as actors to promote placement and scalability.
## Run your workflow
Next, run your workflow using the following API methods. For more information, read the [workflow API reference]({{< ref workflow_api.md >}}).
### Start
To start your workflow, run:
```bash
POST http://localhost:3500/v1.0/workflows/{workflowType}/{instanceId}/start
```
### Terminate
To terminate your workflow, run:
```bash
POST http://localhost:3500/v1.0/workflows/{workflowType}/{instanceId}/terminate
```
### Get metadata
To fetch workflow outputs and inputs, run:
```bash
GET http://localhost:3500/v1.0/workflows/{workflowType}/{instanceId}
```
## Next steps
- Learn more about [authoring workflows for the built-in engine component]()
- Learn more about [supported workflow components]()