Skip to content

Commit

Permalink
ports
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyadkhalil committed Jul 22, 2021
1 parent c4b472b commit 18fb3e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions analysis/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ const app = express();
app.use(express.json());
app.use(express.urlencoded({ extended: true }));

const port = 4004;
const port = 80;
const server = app.listen(port, () => {
console.log("listening for requests on port 4004,");
console.log("listening for requests on port 80,");
});
const io = require("socket.io")(server, {
cors: {
Expand Down
2 changes: 1 addition & 1 deletion auth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ app.use(loginRouter);

app.use(verifyRouter);

const port = 4002;
const port = 80;

app.listen(port, () => {
// eslint-disa ble-next-line no-console
Expand Down
2 changes: 1 addition & 1 deletion meetings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ app.use(joinMeetingsRouter);
app.use(endMeetingsRouter);
app.use(subscribeMeetingsRouter);

const port = 4000;
const port = 80;

app.listen(port, () => {
// eslint-disable-next-line no-console
Expand Down

0 comments on commit 18fb3e3

Please sign in to comment.