aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-05 08:45:37 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-05 08:45:37 +0530
commit3336789ba527e0421d0718834afdffd0f85c3b10 (patch)
treebab95c24baa1454eac0091f5f6726647519b8d38 /.vscode
parentUpdated 'CHANGELOG.md'. [skip ci] (diff)
downloadferdium-app-3336789ba527e0421d0718834afdffd0f85c3b10.tar.gz
ferdium-app-3336789ba527e0421d0718834afdffd0f85c3b10.tar.zst
ferdium-app-3336789ba527e0421d0718834afdffd0f85c3b10.zip
refactor: minor refactoring: solve name-clash of env vars vs vars in the program
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json14
1 files changed, 7 insertions, 7 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index f6c7458bf..96fc456fd 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -19,9 +19,9 @@
19 "name": "Ferdi – Live API", 19 "name": "Ferdi – Live API",
20 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", 20 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
21 "program": "${workspaceFolder}/build/index.js", 21 "program": "${workspaceFolder}/build/index.js",
22 "protocol": "inspector", 22 "protocol": "inspector",
23 "env": { 23 "env": {
24 "LIVE_API": "1", 24 "USE_LIVE_API": "1",
25 "DEBUG": "*,-engine.io*,-socket.io*" 25 "DEBUG": "*,-engine.io*,-socket.io*"
26 } 26 }
27 }, 27 },
@@ -33,7 +33,7 @@
33 "program": "${workspaceFolder}/build/index.js", 33 "program": "${workspaceFolder}/build/index.js",
34 "protocol": "inspector", 34 "protocol": "inspector",
35 "env": { 35 "env": {
36 "LOCAL_API": "1", 36 "USE_LOCAL_API": "1",
37 "DEBUG": "*,-engine.io*,-socket.io*" 37 "DEBUG": "*,-engine.io*,-socket.io*"
38 } 38 }
39 }, 39 },
@@ -56,9 +56,9 @@
56 "name": "(Win Sim) Ferdi – Live API", 56 "name": "(Win Sim) Ferdi – Live API",
57 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", 57 "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
58 "program": "${workspaceFolder}/build/index.js", 58 "program": "${workspaceFolder}/build/index.js",
59 "protocol": "inspector", 59 "protocol": "inspector",
60 "env": { 60 "env": {
61 "LIVE_API": "1", 61 "USE_LIVE_API": "1",
62 "OS_PLATFORM": "win32", 62 "OS_PLATFORM": "win32",
63 "DEBUG": "*,-engine.io*,-socket.io*" 63 "DEBUG": "*,-engine.io*,-socket.io*"
64 } 64 }
@@ -71,10 +71,10 @@
71 "program": "${workspaceFolder}/build/index.js", 71 "program": "${workspaceFolder}/build/index.js",
72 "protocol": "inspector", 72 "protocol": "inspector",
73 "env": { 73 "env": {
74 "LOCAL_API": "1", 74 "USE_LOCAL_API": "1",
75 "OS_PLATFORM": "win32", 75 "OS_PLATFORM": "win32",
76 "DEBUG": "*,-engine.io*,-socket.io*" 76 "DEBUG": "*,-engine.io*,-socket.io*"
77 } 77 }
78 } 78 }
79 ] 79 ]
80} \ No newline at end of file 80}