From 018a7e34b74ac1237f54a7a8de74f4e18d4dfb4f Mon Sep 17 00:00:00 2001 From: Rajat Kumar Date: Sat, 7 Jan 2023 12:18:42 +0530 Subject: [PATCH 1/2] testing PR --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index ebfa14a..af7bbf5 100644 --- a/server.js +++ b/server.js @@ -7,7 +7,7 @@ const HOST = '0.0.0.0'; // App const app = express(); app.get('/', (req, res) => { - res.send('Hello remote world!\n'); + res.send('Hello remote world! (Testing PR)\n'); }); app.listen(PORT, HOST); From f19cbb21ac6acee659779e926269aa3bee150d63 Mon Sep 17 00:00:00 2001 From: Rajat Kumar Date: Sat, 7 Jan 2023 17:44:06 +0530 Subject: [PATCH 2/2] port no updated --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9867fd7..be5dfd0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,7 +14,7 @@ // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [3002], - "appPort": [3500, "3400:3000"], + "appPort": [3700, "3600:3000"], // Uncomment the next line to run commands after the container is created. "postCreateCommand": "npm i",