Skip to content

Commit

Permalink
Merge pull request #13166 from RaananW/differentPortsLotsOfFun
Browse files Browse the repository at this point in the history
Different ports for our hosted tools
  • Loading branch information
sebavan authored Oct 25, 2022
2 parents be8242c + b58767e commit a3358ac
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
32 changes: 16 additions & 16 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"type": "pwa-msedge",
"request": "launch",
"name": "Sandbox development (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1339",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Sandbox Serve (Dev)"
},
Expand All @@ -144,7 +144,7 @@
"type": "pwa-chrome",
"request": "launch",
"name": "Sandbox development (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1339",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Sandbox Serve (Dev)"
},
Expand All @@ -155,7 +155,7 @@
"type": "pwa-msedge",
"request": "launch",
"name": "Launch Sandbox (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1339",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Sandbox Serve for core (Dev)"
},
Expand All @@ -166,23 +166,23 @@
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Sandbox (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1339",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Sandbox Serve for core (Dev)"
},
{
"type": "pwa-msedge",
"request": "launch",
"name": "GUI Editor development (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1341",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "GUI Editor Serve (Dev)"
},
{
"type": "pwa-chrome",
"request": "launch",
"name": "GUI Editor development (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1341",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "GUI Editor Serve (Dev)"
},
Expand All @@ -193,7 +193,7 @@
"type": "pwa-msedge",
"request": "launch",
"name": "Launch GUI Editor (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1341",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "GUI Editor Serve for core (Dev)"
},
Expand All @@ -204,23 +204,23 @@
"type": "pwa-chrome",
"request": "launch",
"name": "Launch GUI Editor (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1341",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "GUI Editor Serve for core (Dev)"
},
{
"type": "pwa-msedge",
"request": "launch",
"name": "Node Editor development (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1340",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Node Editor Serve (Dev)"
},
{
"type": "pwa-chrome",
"request": "launch",
"name": "Node Editor development (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1340",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Node Editor Serve (Dev)"
},
Expand All @@ -231,7 +231,7 @@
"type": "pwa-msedge",
"request": "launch",
"name": "Launch Node Editor (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1340",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Node Editor Serve for core (Dev)"
},
Expand All @@ -242,39 +242,39 @@
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Node Editor (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1340",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "Node Editor Serve for core (Dev)"
},
{
"type": "pwa-msedge",
"request": "launch",
"name": "VSM development (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1342",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "VSM Serve (Dev)"
},
{
"type": "pwa-chrome",
"request": "launch",
"name": "VSM development (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1342",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "VSM Serve (Dev)"
},
{
"type": "pwa-msedge",
"request": "launch",
"name": "Launch VSM (Edge)",
"url": "http://localhost:1338",
"url": "http://localhost:1342",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "VSM Serve for core (Dev)"
},
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch VSM (Chrome)",
"url": "http://localhost:1338",
"url": "http://localhost:1342",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "VSM Serve for core (Dev)"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/guiEditor/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = (env) => {
watch: false,
},
// hot: true,
port: env.TOOLS_PORT || 1338,
port: env.GUIEDITOR_PORT || 1341,
server: env.enableHttps !== undefined || process.env.ENABLE_HTTPS === "true" ? "https" : "http",
hot: (env.enableHotReload !== undefined || process.env.ENABLE_HOT_RELOAD === "true") && !production ? true : false,
liveReload: (env.enableLiveReload !== undefined || process.env.ENABLE_LIVE_RELOAD === "true") && !production ? true : false,
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/nodeEditor/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ module.exports = (env) => {
watch: false,
},
// hot: true,
port: process.env.TOOLS_PORT || 1338,
port: process.env.NME_PORT || 1340,
server: env.enableHttps !== undefined || process.env.ENABLE_HTTPS === "true" ? "https" : "http",
hot: (env.enableHotReload !== undefined || process.env.ENABLE_HOT_RELOAD === "true") && !production ? true : false,
liveReload: (env.enableLiveReload !== undefined || process.env.ENABLE_LIVE_RELOAD === "true") && !production ? true : false,
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/playground/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = (env) => {
watch: false,
},
// hot: true,
port: process.env.TOOLS_PORT || 1338,
port: process.env.PLAYGROUND_PORT || 1338,
server: env.enableHttps !== undefined || process.env.ENABLE_HTTPS === "true" ? "https" : "http",
hot: (env.enableHotReload !== undefined || process.env.ENABLE_HOT_RELOAD === "true") && !production ? true : false,
liveReload: (env.enableLiveReload !== undefined || process.env.ENABLE_LIVE_RELOAD === "true") && !production ? true : false,
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/sandbox/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module.exports = (env) => {
watch: false,
},
// hot: true,
port: process.env.TOOLS_PORT || 1338,
port: process.env.SANDBOX_PORT || 1339,
server: env.enableHttps !== undefined || process.env.ENABLE_HTTPS === "true" ? "https" : "http",
hot: (env.enableHotReload !== undefined || process.env.ENABLE_HOT_RELOAD === "true") && !production ? true : false,
liveReload: (env.enableLiveReload !== undefined || process.env.ENABLE_LIVE_RELOAD === "true") && !production ? true : false,
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/vsm/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = (env) => {
watch: false,
},
// hot: true,
port: env.TOOLS_PORT || 1338,
port: env.VSM_PORT || 1342,
server: env.enableHttps !== undefined || process.env.ENABLE_HTTPS === "true" ? "https" : "http",
hot: (env.enableHotReload !== undefined || process.env.ENABLE_HOT_RELOAD === "true") && !production ? true : false,
liveReload: (env.enableLiveReload !== undefined || process.env.ENABLE_LIVE_RELOAD === "true") && !production ? true : false,
Expand Down

0 comments on commit a3358ac

Please sign in to comment.