diff --git a/.gitignore b/.gitignore index a7c7a9b..397db17 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ /node_modules -/.vscode /.vs db/documents.db access.log diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..969cc66 --- /dev/null +++ b/.vscode/launch.json @@ -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": [ + "/**" + ], + "program": "${workspaceFolder}/dht.js" + } + ] +} \ No newline at end of file diff --git a/.vscode/sftp.json b/.vscode/sftp.json new file mode 100644 index 0000000..2cf864f --- /dev/null +++ b/.vscode/sftp.json @@ -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 +}