mirror of https://github.com/dapr/quickstarts.git
Signed-off-by: Elena Kolevska <elena@kolevska.com> |
||
---|---|---|
.. | ||
order-processor | ||
README.md | ||
makefile |
README.md
Dapr secrets management
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 the Dapr client SDK. If you are looking for the example using only HTTP 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-processor
directory:
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