From 376aa94ed472a5b714203a58dd42c9250fd14adb Mon Sep 17 00:00:00 2001 From: Charles Ewert Date: Thu, 25 Jul 2024 21:49:09 -0400 Subject: [PATCH] add vscode debug launch option to deploy already built app from staging dir --- .vscode/launch.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 482f3d164..59566402d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,9 +2,9 @@ "version": "0.2.0", "configurations": [ { + "name": "Build and Deploy", "type": "brightscript", "request": "launch", - "name": "Jellyfin Debug", "rootDir": "${workspaceFolder}/build/staging", "preLaunchTask": "build-dev", "stopOnEntry": false, @@ -18,6 +18,22 @@ //WARNING: don't edit this value. Instead, set "brightscript.debug.password": "YOUR_PASSWORD_HERE" in your vscode user settings //"password": "${promptForPassword}", }, + { + "name": "Deploy", + "type": "brightscript", + "request": "launch", + "rootDir": "${workspaceFolder}/build/staging", + "stopOnEntry": false, + // To enable RALE: + // set "brightscript.debug.raleTrackerTaskFileLocation": "/absolute/path/to/rale/TrackerTask.xml" in your vscode user settings + // set the below field to true + "injectRaleTrackerTask": false, + "injectRdbOnDeviceComponent": true, + //WARNING: don't edit this value. Instead, set "brightscript.debug.host": "YOUR_HOST_HERE" in your vscode user settings + //"host": "${promptForHost}", + //WARNING: don't edit this value. Instead, set "brightscript.debug.password": "YOUR_PASSWORD_HERE" in your vscode user settings + //"password": "${promptForPassword}", + }, { "name": "Run tests", "type": "brightscript",