Skip to content

Commit

Permalink
port change
Browse files Browse the repository at this point in the history
  • Loading branch information
RamaRaju-vj committed Mar 31, 2024
1 parent 1a0ffdb commit 9e8ec26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ app.use((err, req, res, next) => {

// This function starts the server and is called only when this file is run directly
function startServer() {
const PORT = process.env.PORT || 3307;
const PORT = process.env.PORT || 80;
initializeDatabase().then(() => {
app.listen(PORT, () => {
logger.info({message: `Server is running on port ${PORT}`});
Expand Down

0 comments on commit 9e8ec26

Please sign in to comment.