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", diff --git a/server.js b/server.js index fdc4ed5..f159344 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);