Skip to content
Permalink
9dc4927a0f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (23 sloc) 751 Bytes
import "dotenv/config";
import express from "express";
import cluster from "node:cluster";
import path from "path";
import { fileURLToPath } from "url";
import { env, isCluster } from "./config.js"
import { Red } from "./misc/console-text.js";
import { initCluster } from "./misc/cluster.js";
const app = express();
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename).slice(0, -4);
app.disable("x-powered-by");
if (env.apiURL) {
const { runAPI } = await import("./core/api.js");
if (isCluster) {
await initCluster();
}
runAPI(express, app, __dirname, cluster.isPrimary);
} else {
console.log(
Red("API_URL env variable is missing, cobalt api can't start.")
)
}