aboutsummaryrefslogtreecommitdiff
path: root/src/bot.ts
blob: c9a7a49cb2ec7a248eacd3e4dd6c287f3e0a824b (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
26
27
28
console.log('Tanzanite is Starting');

import { init } from '../lib/utils/BushLogger.js';
// creates proxies on console.log and console.warn
// also starts a REPL session
init();

import { config } from '#config';
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import { Sentry } from '../lib/common/Sentry.js';
import { BushClient } from '../lib/extensions/discord-akairo/BushClient.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);

// @ts-ignore: for debugging purposes
global.client = client;

if (!isDry) await client.dbPreInit();
await client.init();
if (isDry) {
	process.exit(0);
} else {
	await client.start();
}