blob: 752075ba47c0dc73e978aaa4e0a7a6c2e08f9ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { init } from './lib/utils/BushLogger.js';
// creates proxies on console.log and console.warn
// also starts a REPL session
init();
const { dirname } = await import('path');
const { fileURLToPath } = await import('url');
const { default: config } = await import('./config/options.js');
const { Sentry } = await import('./lib/common/Sentry.js');
const { BushClient } = await import('./lib/index.js');
const isDry = process.argv.includes('dry');
if (!isDry) new Sentry(dirname(fileURLToPath(import.meta.url)) || process.cwd());
BushClient.extendStructures();
const client = new BushClient(config);
global.client = client;
global.util = client.util;
if (!isDry) await client.dbPreInit();
await client.init();
if (isDry) {
await client.destroy();
process.exit(0);
} else {
await client.start();
}
|