mirror of https://github.com/dapr/docs.git
correct configuration.program in launch.json
Signed-off-by: Jack Liu shurui <jackliusr@gmail.com>
This commit is contained in:
parent
ffe2429827
commit
d8c31fd8b1
|
|
@ -48,7 +48,7 @@ In the case of the hello world quickstart, two applications are launched, each w
|
||||||
"skipFiles": [
|
"skipFiles": [
|
||||||
"<node_internals>/**"
|
"<node_internals>/**"
|
||||||
],
|
],
|
||||||
"program": "${workspaceFolder}/app.js",
|
"program": "${workspaceFolder}/node/app.js",
|
||||||
"preLaunchTask": "daprd-debug-node",
|
"preLaunchTask": "daprd-debug-node",
|
||||||
"postDebugTask": "daprd-down-node"
|
"postDebugTask": "daprd-down-node"
|
||||||
},
|
},
|
||||||
|
|
@ -56,7 +56,7 @@ In the case of the hello world quickstart, two applications are launched, each w
|
||||||
"type": "python",
|
"type": "python",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Pythonapp with Dapr",
|
"name": "Pythonapp with Dapr",
|
||||||
"program": "${workspaceFolder}/app.py",
|
"program": "${workspaceFolder}/python/app.py",
|
||||||
"console": "integratedTerminal",
|
"console": "integratedTerminal",
|
||||||
"preLaunchTask": "daprd-debug-python",
|
"preLaunchTask": "daprd-debug-python",
|
||||||
"postDebugTask": "daprd-down-python"
|
"postDebugTask": "daprd-down-python"
|
||||||
|
|
@ -123,7 +123,7 @@ For this example the compound configuration is:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"tasks": [...],
|
"configurations": [...],
|
||||||
"compounds": [
|
"compounds": [
|
||||||
{
|
{
|
||||||
"name": "Node/Python Dapr",
|
"name": "Node/Python Dapr",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue