summary refs log tree commit diff
path: root/api/src/start.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/start.ts')
-rw-r--r--api/src/start.ts37
1 files changed, 0 insertions, 37 deletions
diff --git a/api/src/start.ts b/api/src/start.ts
deleted file mode 100644
index ccb4d108..00000000
--- a/api/src/start.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-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;
-try {
-	cores = Number(process.env.THREADS) || os.cpus().length;
-} catch {
-	console.log("[API] Failed to get thread count! Using 1...")
-}
-
-if (cluster.isMaster && process.env.NODE_ENV == "production") {
-	console.log(`Primary ${process.pid} is running`);
-
-	// Fork workers.
-	for (let i = 0; i < cores; i++) {
-		cluster.fork();
-	}
-
-	cluster.on("exit", (worker, code, signal) => {
-		console.log(`worker ${worker.process.pid} died, restart worker`);
-		cluster.fork();
-	});
-} else {
-	var port = Number(process.env.PORT) || 3001;
-
-	const server = new FosscordServer({ port });
-	server.start().catch(console.error);
-
-	// @ts-ignore
-	global.server = server;
-}