Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
removed host from server
Browse files Browse the repository at this point in the history
  • Loading branch information
celeroncoder committed Sep 19, 2021
1 parent 7008891 commit 9bb33ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const PORT = process.env.PORT ?? 8080;
const httpServer: http.Server = http.createServer(app);

if (process.env.NODE_ENV !== "test") {
httpServer.listen(PORT, "localhost", () => {
httpServer.listen(PORT, () => {
logger.info(`Server started on port ${PORT}`);
});
}
Expand Down

0 comments on commit 9bb33ea

Please sign in to comment.