Skip to content

Commit

Permalink
Output port when starting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnederlof committed Jan 11, 2024
1 parent 5c6bcef commit 9109de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async function main() {
});

let port = Number(process.env["NODE_PORT"] || 3000);
app.listen(port, () => console.log("Started!"));
app.listen(port, () => console.log(`Started on http://localhost:${port}`));

await loadCache();

Expand Down

0 comments on commit 9109de1

Please sign in to comment.