Use named arguments to pass files to template

This commit is contained in:
2024-08-04 22:08:11 +10:00
parent 89a5224af2
commit 09ffd40bf7
3 changed files with 30 additions and 27 deletions

View File

@@ -6,7 +6,7 @@
"type": "php",
"request": "launch",
"program": "${workspaceFolder}/main.php",
"args": ["${workspaceFolder}/example-config.json", "${workspaceFolder}/example-candidates.csv"],
"args": ["--council-file", "${workspaceFolder}/example-config.json", "--candidates-file", "${workspaceFolder}/example-candidates.csv"],
"cwd": "${workspaceFolder}",
"port": 9000
}