ktvmanager/.vscode/launch.json

40 lines
1.2 KiB
JSON
Raw Normal View History

2021-02-04 16:57:45 +00:00
{
// 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": [
{
"type": "node",
"request": "launch",
2021-02-06 11:19:30 +00:00
"name": "Server",
2021-02-04 16:57:45 +00:00
"skipFiles": [
"<node_internals>/**"
],
2021-03-06 09:24:10 +00:00
"program": "${workspaceFolder}/bin/www",
"env": {
2021-09-14 13:05:07 +00:00
"DBHOST": "vps.k-world.me.uk",
2021-03-06 09:24:10 +00:00
"DBUSER": "root",
2021-09-14 13:05:07 +00:00
"DBPASS": "Grd555269",
"DATABASE": "BBLB_DNS",
"DBPORT": "3306",
2021-03-06 09:24:10 +00:00
}
2021-02-06 11:19:30 +00:00
},
{
"type": "node",
"request": "launch",
"name": "Checker",
"skipFiles": [
"<node_internals>/**"
],
2021-03-26 12:42:13 +00:00
"program": "${workspaceFolder}/lib/checker.js",
"env": {
2021-09-14 13:05:07 +00:00
"DBHOST": "vps.k-world.me.uk",
2021-03-26 12:42:13 +00:00
"DBUSER": "root",
2021-09-14 13:05:07 +00:00
"DBPASS": "Grd555269",
"DATABASE": "BBLB_DNS",
"DBPORT": "3306",
}
2021-02-04 16:57:45 +00:00
}
]
}