/[sudobot]/trunk/src/index.ts
ViewVC logotype

Annotation of /trunk/src/index.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 58 - (hide annotations)
Mon Jul 29 17:28:25 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 1539 byte(s)
Added debug info support and startup manager
1 rakin 51 import { registerCommands, registerEvents } from './utils/registry';
2     import DiscordClient from './client/Client';
3     import { Intents } from 'discord.js';
4     import { config } from 'dotenv';
5     import { existsSync } from 'fs';
6     import path from 'path';
7 rakin 58 import { registrationEnd, registrationStart } from './utils/debug';
8     import { yellow } from './utils/util';
9 rakin 51
10     const client = new DiscordClient({
11     partials: ["CHANNEL"],
12     intents: [
13     Intents.FLAGS.GUILDS,
14     Intents.FLAGS.GUILD_MESSAGES,
15     Intents.FLAGS.DIRECT_MESSAGES,
16     Intents.FLAGS.DIRECT_MESSAGE_TYPING,
17     Intents.FLAGS.GUILD_PRESENCES,
18     Intents.FLAGS.GUILD_MEMBERS,
19     Intents.FLAGS.GUILD_BANS,
20     Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
21     Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS,
22     ]
23     }, path.resolve(__dirname, '..'));
24    
25     if (existsSync(path.join(__dirname, '../.env'))) {
26     config();
27     }
28     else {
29     process.env.ENV = 'prod';
30     }
31    
32 rakin 58 if (process.argv.includes('--prod')) {
33     console.warn(yellow('WARNING: Forcing production mode (--prod option passed)'));
34     process.env.ENV = 'prod';
35     }
36    
37     if (process.argv.includes('--dev')) {
38     console.warn(yellow('WARNING: Forcing development mode (--dev option passed)'));
39     process.env.ENV = 'dev';
40     }
41    
42 rakin 51 (async () => {
43 rakin 58 await registrationStart();
44 rakin 51 await registerCommands(client, '../commands');
45 rakin 58 await registrationEnd();
46    
47     await registrationStart();
48 rakin 51 await registerEvents(client, '../events');
49 rakin 58 await registrationEnd();
50    
51 rakin 51 await client.login(process.env.token);
52     })();

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26