diff options
author | David Timber <dxdt@dev.snart.me> | 2025-04-14 19:37:42 +0200 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2025-04-14 19:37:42 +0200 |
commit | c2178aa9e7af2bff38af7f62df07b0858b66abeb (patch) | |
tree | 88c7b87ef7d6268419f25ca06ce5c28a487958a4 /.vscode | |
parent | c2e41c5baca02e15c1b9d282280314d3e13d4814 (diff) |
Change command invocation semantics to ...
`python -m palhm`
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 1e96b2f..a81f27b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,9 +8,9 @@ "name": "palhm config", "type": "python", "request": "launch", - "cwd": "${workspaceFolder}", - "program": "src/palhm.py", - "args": [ "-f", "src/conf/py-debug/palhm.jsonc", "config" ], + "cwd": "${workspaceFolder}/src", + "module": "palhm", + "args": [ "-f", "palhm/conf/py-debug/palhm.jsonc", "config" ], "console": "integratedTerminal", "justMyCode": true }, @@ -18,8 +18,8 @@ "name": "palhm mods", "type": "python", "request": "launch", - "cwd": "${workspaceFolder}", - "program": "src/palhm.py", + "cwd": "${workspaceFolder}/src", + "module": "palhm", "args": [ "mods" ], "console": "integratedTerminal", "justMyCode": true @@ -28,9 +28,9 @@ "name": "palhm boot-report", "type": "python", "request": "launch", - "cwd": "${workspaceFolder}", - "program": "src/palhm.py", - "args": [ "-f", "src/conf/py-debug/palhm.jsonc", "boot-report" ], + "cwd": "${workspaceFolder}/src", + "module": "palhm", + "args": [ "-f", "palhm/conf/py-debug/palhm.jsonc", "boot-report" ], "console": "integratedTerminal", "justMyCode": true }, @@ -38,9 +38,9 @@ "name": "palhm run default", "type": "python", "request": "launch", - "cwd": "${workspaceFolder}", - "program": "src/palhm.py", - "args": [ "-f", "src/conf/py-debug/palhm.jsonc", "run" ], + "cwd": "${workspaceFolder}/src", + "module": "palhm", + "args": [ "-f", "palhm/conf/py-debug/palhm.jsonc", "run" ], "console": "integratedTerminal", "justMyCode": true }, @@ -48,11 +48,11 @@ "name": "palhm run check-dnssec", "type": "python", "request": "launch", - "cwd": "${workspaceFolder}", - "program": "src/palhm.py", + "cwd": "${workspaceFolder}/src", + "module": "palhm", "args": [ "-f", - "src/conf/py-debug/palhm.jsonc", + "palhm/conf/py-debug/palhm.jsonc", "run", "check-dnssec" ], |