api/cobalt: update api url error message

This commit is contained in:
wukko 2024-10-20 19:07:42 +06:00
parent 9d68247523
commit 16c5450d40
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -2,26 +2,24 @@ import "dotenv/config";
import express from "express";
import path from 'path';
import { fileURLToPath } from 'url';
import path from "path";
import { fileURLToPath } from "url";
import { env } from "./config.js"
import { Bright, Green, Red } from "./misc/console-text.js";
import { Red } from "./misc/console-text.js";
const app = express();
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename).slice(0, -4);
app.disable('x-powered-by');
app.disable("x-powered-by");
if (env.apiURL) {
const { runAPI } = await import('./core/api.js');
const { runAPI } = await import("./core/api.js");
runAPI(express, app, __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`)
Red("API_URL env variable is missing, cobalt api can't start.")
)
}