diff options
| author | TrainDoctor <11465594+TrainDoctor@users.noreply.github.com> | 2022-06-21 13:49:12 -0700 |
|---|---|---|
| committer | TrainDoctor <11465594+TrainDoctor@users.noreply.github.com> | 2022-06-21 13:49:12 -0700 |
| commit | 1d5d14b49243918e46d33d4c306ae3333e844f92 (patch) | |
| tree | 7b4f6ecd8f13da1099df3516699eac3958747ceb /.vscode/launch.json | |
| parent | ce23534ccc9d8c6035eec5e9d38f1965d3e746e2 (diff) | |
| download | decky-loader-1d5d14b49243918e46d33d4c306ae3333e844f92.tar.gz decky-loader-1d5d14b49243918e46d33d4c306ae3333e844f92.zip | |
Added remote launch option
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index ff1f142a..be8f2983 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,16 @@ "version": "0.2.0", "configurations": [ { - "name": "Debug (Local)", + "name": "Run (Remote)", + "type": "python", + "request": "launch", + "console": "integratedTerminal", + "preLaunchTask": "remoterun", + "cwd": "", + "program": "", + }, + { + "name": "Run (Local)", "type": "python", "request": "launch", "program": "${workspaceFolder}/backend/main.py", |
