quickstarts/tutorials/workflow/csharp/fundamentals
Marc Duiker b2f3dbc153
Update Basic Workflow
Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
2025-03-21 17:51:27 +01:00
..
Basic Update Basic Workflow 2025-03-21 17:51:27 +01:00
README.md Update Basic Workflow 2025-03-21 17:51:27 +01:00
dapr.yaml Update Basic Workflow 2025-03-21 17:51:27 +01:00
fundamentals.http Update Basic Workflow 2025-03-21 17:51:27 +01:00

README.md

Workflow Basics

This tutorial covers the fundamentals of authoring Dapr Workflows. For more information about the fundamentals of Dapr Workflows, see the Dapr docs.

Run the tutorial

  1. Use a terminal to navigate to the tutorials/workflow/csharp/fundamentals folder.

  2. Build the project using the .NET CLI.

    dotnet build ./Basic/
    
  3. Use the Dapr CLI to run the Dapr Multi-App run file

    dapr run -f .
    
  4. Use the POST request in the basics.http file to start the workflow.

  5. Use the GET request in the basics.http file to get the status of the workflow.

  6. Stop the Dapr Multi-App run process by pressing Ctrl+C.