mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
36 lines
988 B
JavaScript
36 lines
988 B
JavaScript
import "dotenv/config";
|
|
import "./modules/sub/alias-envs.js";
|
|
|
|
import express from "express";
|
|
|
|
import { Bright, Green, Red } from "./modules/sub/consoleText.js";
|
|
import { getCurrentBranch, shortCommit } from "./modules/sub/currentCommit.js";
|
|
import { loadLoc } from "./localization/manager.js";
|
|
import { env } from "./modules/config.js"
|
|
|
|
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const app = express();
|
|
|
|
const gitCommit = shortCommit();
|
|
const gitBranch = getCurrentBranch();
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename).slice(0, -4);
|
|
|
|
app.disable('x-powered-by');
|
|
|
|
await loadLoc();
|
|
|
|
if (env.apiURL) {
|
|
const { runAPI } = await import('./core/api.js');
|
|
runAPI(express, app, gitCommit, gitBranch, __dirname)
|
|
} else {
|
|
console.log(
|
|
Red(`cobalt wasn't configured yet or configuration is invalid.\n`)
|
|
+ Bright(`please run the setup script to fix this: `)
|
|
+ Green(`npm run setup`)
|
|
)
|
|
}
|