From 59653a467a97051eeeb5224ac0f0d64d9b4b9cda Mon Sep 17 00:00:00 2001 From: Rob Anderson Date: Thu, 17 Aug 2023 16:14:05 -0700 Subject: [PATCH] launch via npm to pick up .env file --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c912498..6c4a4c9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -26,8 +26,8 @@ "type": "node", "request": "launch", "name": "Launch Probot", - "runtimeExecutable": "probot", - "runtimeArgs": ["run", "./app.js"], + "runtimeExecutable": "npm", + "runtimeArgs": ["start"], "console": "integratedTerminal", "cwd": "${workspaceRoot}/", }