From 3336789ba527e0421d0718834afdffd0f85c3b10 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Thu, 5 Aug 2021 08:45:37 +0530 Subject: refactor: minor refactoring: solve name-clash of env vars vs vars in the program --- .vscode/launch.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.vscode/launch.json') 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 @@ "name": "Ferdi – Live API", "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", "program": "${workspaceFolder}/build/index.js", - "protocol": "inspector", + "protocol": "inspector", "env": { - "LIVE_API": "1", + "USE_LIVE_API": "1", "DEBUG": "*,-engine.io*,-socket.io*" } }, @@ -33,7 +33,7 @@ "program": "${workspaceFolder}/build/index.js", "protocol": "inspector", "env": { - "LOCAL_API": "1", + "USE_LOCAL_API": "1", "DEBUG": "*,-engine.io*,-socket.io*" } }, @@ -56,9 +56,9 @@ "name": "(Win Sim) Ferdi – Live API", "runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", "program": "${workspaceFolder}/build/index.js", - "protocol": "inspector", + "protocol": "inspector", "env": { - "LIVE_API": "1", + "USE_LIVE_API": "1", "OS_PLATFORM": "win32", "DEBUG": "*,-engine.io*,-socket.io*" } @@ -71,10 +71,10 @@ "program": "${workspaceFolder}/build/index.js", "protocol": "inspector", "env": { - "LOCAL_API": "1", + "USE_LOCAL_API": "1", "OS_PLATFORM": "win32", "DEBUG": "*,-engine.io*,-socket.io*" } } ] -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf