From f6385b615fb92133452a9eb2f658c1e5826ab7a6 Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Thu, 12 Mar 2020 21:04:18 -0700 Subject: [PATCH] Added videos links and fixed broken link (#438) * Developer Tooling docs and adding links for Bindings and to other HowTo topics to concepts specs. * Adding links to videos and fixed broken link Co-authored-by: Yaron Schneider --- concepts/secrets/README.md | 1 + howto/README.md | 9 ++++----- howto/vscode-debugging-daprd/README.md | 2 +- howto/vscode-remote-containers/README.md | 5 +++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/concepts/secrets/README.md b/concepts/secrets/README.md index cea930d1e..ddd53d8d2 100644 --- a/concepts/secrets/README.md +++ b/concepts/secrets/README.md @@ -17,6 +17,7 @@ For more information read [Referencing Secret Stores in Components](./component- ## Using secrets in your application Application code can call the secrets building block API to retrieve secrets from Dapr supported secret stores that can be used in your code. +Watch this [video](https://www.youtube.com/watch?v=OtbYCBt9C34&t=1818) for an example of how the secrets API can be used in your application. For example, the diagram below shows an application requesting the secret called "mysecret" from a secret store called "vault" from a configured cloud secret store. diff --git a/howto/README.md b/howto/README.md index 185ba721f..122c534d6 100644 --- a/howto/README.md +++ b/howto/README.md @@ -11,7 +11,7 @@ Here you'll find a list of How To guides that walk you through accomplishing spe - [Observerability](#observerability) - [Security](#security) - [Components](#components) -- [Developer Tooling](#developer-experience) +- [Developer tooling](#developer-tooling) - [Infrastructure integration](#Infrastructure-integration) ## Service invocation @@ -62,9 +62,8 @@ For Actors How Tos see the SDK documentation * [Diagnose your services with distributed tracing](./diagnose-with-tracing) - ## Security -### Mutual Transport Layer Security (TLS) +### Mutual Transport Layer Security (mTLS) * [Setup and configure mutual TLS between Dapr instances](./configure-mtls) @@ -77,10 +76,10 @@ For Actors How Tos see the SDK documentation * [Limit components for one or more applications using scopes](./components-scopes) -## Developer experience +## Developer tooling ### Using Visual Studio Code -* [Using Remote Containers for application development](./vscode-remote-containers-daprd) +* [Using Remote Containers for application development](./vscode-remote-containers) * [Developing and debugging Dapr applications](./vscode-debugging-daprd) * [Setup development environment for Dapr runtime development ](https://github.com/dapr/dapr/blob/master/docs/development/setup-dapr-development-using-vscode.md) diff --git a/howto/vscode-debugging-daprd/README.md b/howto/vscode-debugging-daprd/README.md index 39bf3f47a..ab50441a8 100644 --- a/howto/vscode-debugging-daprd/README.md +++ b/howto/vscode-debugging-daprd/README.md @@ -3,7 +3,7 @@ ## Visual Studio Code Dapr extension It is recommended to use the *preview* of the [Dapr Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-dapr) available in the Visual Studio marketplace for local development and debugging of your Dapr applications. -Watch this [20 min video](https://www.youtube.com/watch?v=OtbYCBt9C34&t=85) on how to use the Dapr VS Code extension. +Watch this [video](https://www.youtube.com/watch?v=OtbYCBt9C34&t=85) on how to use the Dapr VS Code extension. ### Debugging multiple Dapr applications at the same time Using the VS Code extension you can debug multiple Dapr applications at the same time with [Multi-target debugging](https://code.visualstudio.com/docs/editor/debugging#_multitarget-debugging) diff --git a/howto/vscode-remote-containers/README.md b/howto/vscode-remote-containers/README.md index d65c165eb..1f63b7149 100644 --- a/howto/vscode-remote-containers/README.md +++ b/howto/vscode-remote-containers/README.md @@ -6,7 +6,9 @@ The Visual Studio Code Remote - Containers extension lets you use a Docker conta Dapr has pre-built Docker remote containers for each of the language SDKs. You can pick the one of your choice for a ready made environment. Note these pre-built containers automatically update to the latest Dapr release. -These are the steps +Watch this [video](https://www.youtube.com/watch?v=D2dO4aGpHcg&t=120) on how to use the Dapr VS Code Remote Containers with your application. + +These are the steps to use Dapr Remote Containers 1. Open your application workspace in VS Code 2. In the command command palette select the `Remote-Containers: Add Development Container Configuration Files...` command 3. Type `dapr` to filter the list to available Dapr remote containers and choose the language container that matches your application. See screen shot below. @@ -14,4 +16,3 @@ These are the steps -Watch this [video](https://www.youtube.com/watch?v=D2dO4aGpHcg&t=120) on how to use the Dapr VS Code Remote Containers with your application.