quickstarts/secrets_management/csharp/http
Phil Ngan 741a8f7ad9 Converted all projects to net8.0
Exception is batch because Swashbuckle does not support net8

Signed-off-by: Phil Ngan <phillip.ngan@gmail.com>
2024-02-18 16:12:57 +13:00
..
order-processor Converted all projects to net8.0 2024-02-18 16:12:57 +13:00
README.md update from components path to resources path (#781) 2023-02-03 10:51:02 -08:00
makefile Removed docker image prefix addition step 2022-07-25 12:28:57 -07:00

README.md

Dapr secrets management (HTTP Client)

In this quickstart, you'll create a microservice to demonstrate Dapr's secrets management API. The service fetches secret from a secret store. See Why secrets management to understand when to use this API.

Visit this link for more information about Dapr and Secrets Management.

Note: This example leverages HTTP requests only. If you are looking for the example using the Dapr Client SDK (recommended) click here.

This quickstart includes one service:

  • Dotnet client service order-processor

Run Dotnet service with Dapr

  1. Open a new terminal window and navigate to order-processor directory:
cd ./order-processor
dotnet restore
dotnet build
  1. Run the Dotnet service app with Dapr:
cd ./order-processor
dapr run --app-id order-processor --resources-path ../../../components/ -- dotnet run
dapr stop --app-id order-processor