aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json28
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"
],