I am trying to launch my mern web app but it gives me this error, "Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch". I did set my port to process.env.PORT||8080 and here is my index.js code:
const app = require("./server.js");
const PORT = process.env.PORT || 8080;
const path = require("path");
const express = require("express");
if (process.env.NODE_ENV === "production") {
app.use(express.static("acl-frontend/build"));
app.get("*", (req, res) => {
res.sendFile(
path.resolve(__dirname, "acl-frontend", "build", "index.html")
);
});
}
app.listen(PORT, () => {
console.log("This server is running");
});
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…