Compare commits

...

3 Commits

Author SHA1 Message Date
3e1715e487 added universal launcher
All checks were successful
Chore App Build and Push Docker Images / build-and-push (push) Successful in 44s
2026-02-16 16:20:04 -05:00
11e7fda997 wip 2026-02-16 16:17:17 -05:00
09d42b14c5 wip 2026-02-16 16:04:44 -05:00

15
.vscode/launch.json vendored
View File

@@ -58,12 +58,21 @@
"name": "Vue: Frontend Tests", "name": "Vue: Frontend Tests",
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"runtimeExecutable": "npx", "runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [ "runtimeArgs": [
"vitest" "run",
"test:unit"
], ],
"cwd": "${workspaceFolder}/frontend/vue-app", "cwd": "${workspaceFolder}/frontend/vue-app",
"console": "integratedTerminal" "console": "integratedTerminal",
"osx": {
"env": {
"PATH": "/opt/homebrew/bin:${env:PATH}"
}
}
} }
], ],
"compounds": [ "compounds": [