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

Diff of /trunk/src/index.ts

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 51 by rakin, Mon Jul 29 17:28:23 2024 UTC revision 58 by rakin, Mon Jul 29 17:28:25 2024 UTC
# Line 4  import { Intents } from 'discord.js'; Line 4  import { Intents } from 'discord.js';
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"],
# Line 27  else { Line 29  else {
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  })();  })();

Legend:
Removed from v.51  
changed lines
  Added in v.58

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26