summary refs log tree commit diff
path: root/bundle/src
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-16 15:07:18 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-16 15:07:18 +0200
commitda81015ddd5e791badec933806a7cfb52fe2edf5 (patch)
tree5d09292b591e1402a202ea2392230071082eefb1 /bundle/src
parent:sparkles: update auth middleware (diff)
downloadserver-da81015ddd5e791badec933806a7cfb52fe2edf5.tar.xz
update Event
Diffstat (limited to 'bundle/src')
-rw-r--r--bundle/src/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts
index 0ef7a8a3..faf8a324 100644
--- a/bundle/src/Server.ts
+++ b/bundle/src/Server.ts
@@ -10,7 +10,7 @@ import { Config } from "../../util/dist";
 
 const app = express();
 const server = http.createServer();
-const port = Number(process.env.PORT) || 8080;
+const port = Number(process.env.PORT) || 3001;
 const production = false;
 server.on("request", app);