ktvmanager/.vscode/launch.json

49 lines
1.4 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": [
2021-02-06 15:07:01 +00:00
{
"name": "React",
"type": "chrome",
"request": "launch",
2021-02-16 16:42:11 +00:00
"url": "http://localhost:6969",
2021-02-26 17:22:11 +00:00
// "webRoot": "${workspaceRoot}/react-backend/client/src"
"port": 9223
2021-02-06 15:07:01 +00:00
},
2021-02-04 16:57:45 +00:00
{
"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": {
"HOST": "localhost",
"DBUSER": "root",
"DBPASS": "example",
"DATABASE":"BBLB_DNS"
}
2021-02-06 11:19:30 +00:00
},
{
"type": "node",
"request": "launch",
"name": "Checker",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/checker.js"
2021-02-16 13:58:46 +00:00
},
{
"type": "node",
"request": "launch",
"name": "password",
"skipFiles": [
"<node_internals>/**"
],
2021-02-16 16:42:11 +00:00
"program": "${workspaceFolder}/lib/addAccounts.js"
2021-02-04 16:57:45 +00:00
}
]
}