blob: 038fbbb620846bf5243b9c731ca652cb8b3732f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { init } from './lib/utils/BushLogger.js';
// creates proxies on console.log and console.warn
// also starts a REPL session
init();
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import { default as 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 && config.credentials.sentryDsn !== null) new Sentry(dirname(fileURLToPath(import.meta.url)) || process.cwd(), config);
BushClient.extendStructures();
const client = new BushClient(config);
if (!isDry) await client.dbPreInit();
await client.init();
if (isDry) {
await client.destroy();
process.exit(0);
} else {
await client.start();
}
|