ktvmanager/.vscode/launch.json
Karl 0c9db58903
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 23s
print the version
2025-07-05 10:41:55 +01:00

65 lines
2.1 KiB
JSON

{
// 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": "Launch Program",
"program": "${workspaceFolder}/lib/apache_functions.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node",
"runtimeExecutable": "node",
"env": {
"DBHOST": "vps.k-world.me.uk",
"DBUSER": "root",
"DBPASS": "Grd555269",
"DATABASE": "BBLB_DNS",
"DBPORT": "5405",
"TORSSRV": "localhost",
"TORSPWD": "KarlMax",
}
},
{
"type": "node",
"request": "launch",
"name": "Server",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "/home/karl/.nvm/versions/node/v20.19.3/bin/node",
"program": "${workspaceFolder}/bin/www",
"env": {
"DBHOST": "vps.k-world.me.uk",
"DBUSER": "root",
"DBPASS": "Grd555269",
"DATABASE": "BBLB_DNS",
"DBPORT": "5405",
"TORSSRV": "localhost",
"TORSPWD": "KarlMax",
}
},
{
"type": "node",
"request": "launch",
"name": "Checker",
"runtimeExecutable": "/home/karl/.nvm/versions/node/v20.19.3/bin/node",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/lib/checker.js",
"env": {
"DBHOST": "vps.k-world.me.uk",
"DBUSER": "root",
"DBPASS": "Grd555269",
"DATABASE": "BBLB_DNS",
"DBPORT": "5405",
"TORSSRV": "localhost",
"TORSPWD": "KarlMax",
}
}
]
}