mirror of https://github.com/dapr/quickstarts.git
				
				
				
			| Exception is batch because Swashbuckle does not support net8 Signed-off-by: Phil Ngan <phillip.ngan@gmail.com> | ||
|---|---|---|
| .. | ||
| order-processor | ||
| README.md | ||
| makefile | ||
		
			
				
				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
requestsonly. 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
- 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 --app-id order-processor --resources-path ../../../components/ -- dotnet run
dapr stop --app-id order-processor