Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
change sim port to 9009
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmurdoch committed Jun 16, 2023
1 parent 0d25bec commit 150bbf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/packages/sim/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ const server = http.createServer((req, res) => {
}
});

server.listen(3000, () => {
console.log(`Server is running on http://localhost:${3000}`);
server.listen(9009, () => {
console.log(`Server is running on http://localhost:${9009}`);
});

0 comments on commit 150bbf0

Please sign in to comment.