return to master state

This commit is contained in:
aminamos
2020-04-07 08:52:28 -07:00
parent 93b3c2ac48
commit 332bc2d6bd
5 changed files with 11 additions and 205 deletions

View File

@@ -35,11 +35,6 @@ server.use("/service-worker.js", (req, res) =>
);
server.use(router);
// server.listen(3000, () => {
// console.log("JSON Server is running on port 3000");
// });
// allow for port 3001
const port = process.env.PORT || 3000
server.listen(port, () => {
console.log(`JSON Server is running on port ${port}`);
server.listen(3000, () => {
console.log("JSON Server is running on port 3000");
});