mirror of https://github.com/dapr/docs.git
Merge pull request #3862 from paianish62/v1.12
The dapr run command was listed incorrectly for Powershell users. It now has two different options for both Powershell and non-Powershell environments correctly ends in resources-path ../ (done in the get-started-component.md file),
This commit is contained in:
commit
d6acd94807
|
@ -64,6 +64,12 @@ In the above file definition:
|
|||
|
||||
Launch a Dapr sidecar that will listen on port 3500 for a blank application named `myapp`:
|
||||
|
||||
|
||||
PowerShell environment:
|
||||
```bash
|
||||
dapr run --app-id myapp --dapr-http-port 3500 --resources-path ../
|
||||
```
|
||||
non-PowerShell environment:
|
||||
```bash
|
||||
dapr run --app-id myapp --dapr-http-port 3500 --resources-path .
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue