diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-16 15:07:18 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-16 15:07:18 +0200 |
commit | e77678799e4ade391b2a9ef3fafc14f33894016a (patch) | |
tree | a416cc6824762ed217ec872aa084e100ebaef9d9 /bundle/src | |
parent | :sparkles: update auth middleware (diff) | |
download | server-e77678799e4ade391b2a9ef3fafc14f33894016a.tar.xz |
update Event
Diffstat (limited to 'bundle/src')
-rw-r--r-- | bundle/src/Server.ts | 2 |
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); |