4 |
import { config } from 'dotenv'; |
import { config } from 'dotenv'; |
5 |
import { existsSync } from 'fs'; |
import { existsSync } from 'fs'; |
6 |
import path from 'path'; |
import path from 'path'; |
7 |
|
import { registrationEnd, registrationStart } from './utils/debug'; |
8 |
|
import { yellow } from './utils/util'; |
9 |
|
|
10 |
const client = new DiscordClient({ |
const client = new DiscordClient({ |
11 |
partials: ["CHANNEL"], |
partials: ["CHANNEL"], |
29 |
process.env.ENV = 'prod'; |
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 () => { |
(async () => { |
43 |
|
await registrationStart(); |
44 |
await registerCommands(client, '../commands'); |
await registerCommands(client, '../commands'); |
45 |
|
await registrationEnd(); |
46 |
|
|
47 |
|
await registrationStart(); |
48 |
await registerEvents(client, '../events'); |
await registerEvents(client, '../events'); |
49 |
|
await registrationEnd(); |
50 |
|
|
51 |
await client.login(process.env.token); |
await client.login(process.env.token); |
52 |
})(); |
})(); |