Skip to content

Commit

Permalink
Update backend port from 5002 to 3001
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiArya20 committed Dec 11, 2024
1 parent 1fb2d8a commit 291b306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createServer } from "./server";
import { log } from "@repo/logger";

const port = process.env.PORT || 5002;
const port = process.env.PORT || 3001;
const server = createServer();

server.listen(port, () => {
Expand Down

0 comments on commit 291b306

Please sign in to comment.