mirror of https://github.com/dapr/quickstarts.git
988 B
988 B
Dapr workflows
In this quickstart, you'll create a microservice to demonstrate Dapr's workflow API. The service starts and manages a workflow to store and retrieve data in a state store.
This quickstart includes one service:
- Dotnet client service
order-processor
Run Dotnet service with Dapr
- Open a new terminal window and navigate to
order-processor
directory:
cd ./order-processor
dotnet restore
dotnet build
- Run the Dotnet service app with Dapr:
cd ./order-processor
dapr run --dapr-grpc-port 4001 dotnet run