From a01c87416b241315a9268bb4eb5206ade8328069 Mon Sep 17 00:00:00 2001 From: David Timber Date: Wed, 27 Apr 2022 17:40:41 +0800 Subject: Initial commit --- .vscode/launch.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d126290 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,36 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "palhm config", + "type": "python", + "request": "launch", + "cwd": "${workspaceFolder}/src", + "program": "palhm.py", + "args": [ + "-f", + "conf/py-debug/palhm.jsonc", + "config" + ], + "console": "integratedTerminal", + "justMyCode": true + }, + { + "name": "palhm run default", + "type": "python", + "request": "launch", + "cwd": "${workspaceFolder}/src", + "program": "palhm.py", + "args": [ + "-f", + "conf/py-debug/palhm.jsonc", + "run" + ], + "console": "integratedTerminal", + "justMyCode": true + } + ] +} -- cgit v1.2.3-70-g09d2