blob: d18cd0d6af951bf302fc25881142743ad03330fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import config from './config/options.js';
import { Sentry } from './lib/common/Sentry.js';
import { BushClient } from './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();
}
|