sync vscode folder for launch settings

This commit is contained in:
Dobromir Popov
2023-05-15 08:12:45 +00:00
parent 83bdd979af
commit 77f3ee093c
3 changed files with 29 additions and 1 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// 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",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/dht.js"
}
]
}

12
.vscode/sftp.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "homeserver",
"host": "192.168.0.10",
"protocol": "sftp",
"port": 22,
"username": "popov",
"remotePath": "/",
"remotePath": "/mnt/nas4T/DOBY/DEV/",
"uploadOnSave": false,
"useTempFile": false,
"openSsh": false
}