Skip to content

Commit

Permalink
Update vscode launch scripts (#2898)
Browse files Browse the repository at this point in the history
  • Loading branch information
feedmeapples committed May 25, 2022
1 parent df78a57 commit 8a2dcec
Showing 1 changed file with 5 additions and 56 deletions.
61 changes: 5 additions & 56 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"cwd": "${workspaceFolder}",
"args": [
"--env",
"development_active",
"development-active",
"start",
]
},
Expand All @@ -34,7 +34,7 @@
"cwd": "${workspaceFolder}",
"args": [
"--env",
"development_mysql",
"development-mysql",
"start",
]
},
Expand All @@ -47,7 +47,7 @@
"cwd": "${workspaceFolder}",
"args": [
"--env",
"development_postgres",
"development-postgres",
"start",
]
},
Expand All @@ -60,60 +60,9 @@
"cwd": "${workspaceFolder}",
"args": [
"--env",
"development_sqlite",
"development-sqlite",
"start",
]
},
{
"name": "Debug CLI Namespace Describe",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/tools/cli",
"cwd": "${workspaceFolder}",
"args": [
"--namespace",
"default",
"namespace",
"describe"
]
},
{
"name": "Debug CLI Admin Namespace Describe",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/tools/cli",
"cwd": "${workspaceFolder}",
"args": [
"admin",
"namespace",
"describe",
"--service_config_dir",
"./config"
]
},
{
"name": "Debug CLI Workflow Run",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/cmd/tools/cli",
"cwd": "${workspaceFolder}",
"args": [
"workflow",
"run",
"--taskqueue",
"TestTaskQueue",
"--workflow_type",
"TestWorkflow_test",
"--execution_timeout",
"100000000",
"--input",
"{}"
],
"env": {"TEMPORAL_CLI_SHOW_STACKS": 1}
},

]
}
}

0 comments on commit 8a2dcec

Please sign in to comment.