aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarsVomMars2020-10-10 01:07:44 +0200
committerLarsVomMars2020-10-10 01:07:44 +0200
commitba16ce3b92379c31afd060fa5b7c1e3a37aac995 (patch)
tree8ab7669fd0c599dc3149fb4ac16de9728c8f51ee
parent68b06d4cdd24607cee4f016425c4380aea6d556d (diff)
env Port
-rw-r--r--.env.example1
-rw-r--r--app.js2
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=
diff --git a/app.js b/app.js
index fcb7a8a..442ac13 100644
--- a/app.js
+++ b/app.js
@@ -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"));