aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-08-02 12:06:56 -0400
committerAndrew Lee <alee14498@gmail.com>2019-08-02 12:06:56 -0400
commitf7c360592b6c2ef24b033280aa977a894349476a (patch)
treed057e242caccb73f02ec37c3693317a638fb356a /.vscode
parentab197dc41a884902625aff031cf0df089b8065b6 (diff)
downloadalp-website-f7c360592b6c2ef24b033280aa977a894349476a.tar.gz
alp-website-f7c360592b6c2ef24b033280aa977a894349476a.tar.bz2
alp-website-f7c360592b6c2ef24b033280aa977a894349476a.zip
Finally making some progress on the website
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..ac269da
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,24 @@
+{
+ // 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",
+ "program": "${workspaceFolder}/app.js"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Debug",
+ "runtimeExecutable": "nodemon",
+ "program": "${workspaceFolder}/app.js",
+ "restart": true,
+ "console": "integratedTerminal",
+ "internalConsoleOptions": "neverOpen"
+ }
+ ]
+} \ No newline at end of file