This commit is contained in:
jxlwqq 2025-10-21 21:06:36 -03:00 committed by GitHub
commit 60eaf292b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

9
plugins/dapr/README.md Normal file
View file

@ -0,0 +1,9 @@
# Dapr CLI
The [Dapr CLI](https://docs.dapr.io/getting-started/install-dapr-cli/) is the main tool youll be using for various Dapr related tasks. You can use it to run an application with a Dapr sidecar, as well as review sidecar logs, list running services, and run the Dapr dashboard. The Dapr CLI works with both self-hosted and Kubernetes environments.
To use it, add `dapr` to the plugins array of your zshrc file:
```sh
plugins=(... dapr)
```

View file

@ -0,0 +1,4 @@
if [ $commands[dapr] ]; then
source <(dapr completion zsh)
compdef _dapr dapr
fi