summary refs log tree commit diff
path: root/src/api/start.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/api/start.ts (renamed from api/src/start.ts)5
1 files changed, 2 insertions, 3 deletions
diff --git a/api/src/start.ts b/src/api/start.ts

index ccb4d108..9ba198e7 100644 --- a/api/src/start.ts +++ b/src/api/start.ts
@@ -1,13 +1,12 @@ process.on("uncaughtException", console.error); process.on("unhandledRejection", console.error); -import "missing-native-js-functions"; import { config } from "dotenv"; config(); import { FosscordServer } from "./Server"; import cluster from "cluster"; import os from "os"; -var cores = 1; +let cores = 1; try { cores = Number(process.env.THREADS) || os.cpus().length; } catch { @@ -27,7 +26,7 @@ if (cluster.isMaster && process.env.NODE_ENV == "production") { cluster.fork(); }); } else { - var port = Number(process.env.PORT) || 3001; + let port = Number(process.env.PORT) || 3001; const server = new FosscordServer({ port }); server.start().catch(console.error);