diff options
author | LarsVomMars | 2020-10-10 01:07:44 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-10 01:07:44 +0200 |
commit | ba16ce3b92379c31afd060fa5b7c1e3a37aac995 (patch) | |
tree | 8ab7669fd0c599dc3149fb4ac16de9728c8f51ee | |
parent | 68b06d4cdd24607cee4f016425c4380aea6d556d (diff) |
env Port
-rw-r--r-- | .env.example | 1 | ||||
-rw-r--r-- | app.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.env.example b/.env.example index ef55330..febc0cd 100644 --- a/.env.example +++ b/.env.example @@ -1,3 +1,4 @@ +PORT= DBHost= DBName= DBUser= @@ -34,4 +34,4 @@ app.use("/quotes", checkUser, quotes); app.use("/poll", checkUser, poll); app.use("/auth", auth); -app.listen(5005, () => console.log("Server started on http://localhost:5005")); +app.listen(process.env.PORT || 5005, () => console.log("Server started on http://localhost:5005")); |