From 6081b4cba1ad34ff6a405a24a7ab5210714169b0 Mon Sep 17 00:00:00 2001 From: Matjaz Date: Thu, 14 Sep 2017 20:14:44 +0200 Subject: [PATCH] Commit from VS Code --- .vscode/launch.json | 31 +++++++++++++++++++++++++++++++ .vscode/settings.json | 6 ++++++ 2 files changed, 37 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..39fccdb --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,31 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "node", + "request": "launch", + "program": "${workspaceRoot}/bin/www", + "stopOnEntry": false, + "args": [], + "cwd": "${workspaceRoot}/", + "runtimeExecutable": null, + "runtimeArgs": [ + "--nolazy" + ], + "env": { + "NODE_ENV": "development" + }, + "externalConsole": false, + "sourceMaps": false, + "outDir": null + }, + { + "name": "Attach", + "type": "node", + "request": "attach", + "address": "192.168.5.105", + "port": 5858 + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4d76389 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +// Place your settings in this file to overwrite default and user settings. +{ + "files.associations": { + ".ejs": "html" + } +} \ No newline at end of file