1 |
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 |
import { registrationEnd, registrationStart } from './utils/debug'; |
8 |
import { yellow } from './utils/util'; |
9 |
|
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 |
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 |
(async () => { |
43 |
await registrationStart(); |
44 |
await registerCommands(client, '../commands'); |
45 |
await registrationEnd(); |
46 |
|
47 |
await registrationStart(); |
48 |
await registerEvents(client, '../events'); |
49 |
await registrationEnd(); |
50 |
|
51 |
await client.login(process.env.token); |
52 |
})(); |