diff options
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,8 +35,8 @@ app.use("/", express.static(__dirname + "/overview/public")); app.use("/mottovote", checkUser, mottovote); app.use("/quotes", checkUser, quotes); // app.use("/poll", checkUser, poll); -app.use("/profile", checkUser, profile); +// app.use("/profile", checkUser, profile); app.use("/admin", checkAdmin, admin); app.use("/auth", auth); -app.listen(process.env.PORT || 5005, () => console.log("Server started on http://localhost:5005")); +app.listen(process.env.PORT || 5005, () => console.log(`Server started on http://localhost:${process.env.PORT}`)); |