Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down