## Description If the server starts without a `PORT` defined, it might crash unexpectedly later. We should check this immediately when the app boots. ## Requirements - [ ] At the top of `index.js` or `server.js`, check if `process.env.PORT` exists. - [ ] If it does not exist, use `console.warn()` to print a message saying it is falling back to a default port (e.g., 3000).