Spaces:
Running
Running
import "dotenv/config"; | |
import express from "express"; | |
import path from 'path'; | |
import { fileURLToPath } from 'url'; | |
import { env } from "./config.js" | |
import { Bright, Green, 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'); | |
if (env.apiURL) { | |
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`) | |
) | |
} | |