From 2efef31213e8f8fc00ca6d193fd6bad567551bf0 Mon Sep 17 00:00:00 2001 From: Denis Gukov Date: Sat, 12 Oct 2024 23:04:08 +0000 Subject: [PATCH] ci(runner): add vscode launch for runner --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index a3b5b0eb..a09069bf 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -25,6 +25,18 @@ "PATH": "${workspaceFolder}/.venv/bin:${env:PATH}", "SEMAPHORE_USE_REMOTE_RUNNER": "true" } + }, + { + "name": "Launch Runner", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "./cli/main.go", + "args": ["runner", "--config", ".devcontainer/config-runner.json"], + "cwd": "${workspaceFolder}", + "env": { + "PATH": "${workspaceFolder}/.venv/bin:${env:PATH}" + } } ] } \ No newline at end of file