mirror of https://github.com/dapr/quickstarts.git
1005 B
1005 B
Dapr workflows
In this quickstart, you'll create a simple console application to demonstrate Dapr's workflow programming model and the workflow management API. The console app starts and manages the lifecycle of a workflow that stores and retrieves data in a Dapr state store.
This quickstart includes one project:
- .NET console app
order-processor
Run the order processor workflow
- Open a new terminal window and navigate to
order-processordirectory:
cd ./order-processor
dotnet restore
dotnet build
- Run the Dotnet service app with Dapr:
cd ./order-processor
dapr run dotnet run