-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
60 lines (47 loc) · 1.59 KB
/
index.ts
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { Client, Events, GatewayIntentBits } from "discord.js";
import type { Documentation } from "typedoc-nextra"
import chalk from "chalk";
import "dotenv/config"
import path = require("node:path");
import { CommandKit } from 'commandkit';
import express, { Express } from "express"
// Local Imports
import { Data } from "./helpers/parseData";
const client = new Client({
intents: [GatewayIntentBits.Guilds]
})
client.webapp = express()
new CommandKit({
client,
commandsPath: path.join(__dirname, 'commands'),
eventsPath: path.join(__dirname, 'events'),
devGuildIds: ["1128736663573643315"],
devUserIds: ['916316955772862475', "691111067807514685"],
bulkRegister: true
})
client.debug = (message: string) => {
const [left, right] = [chalk.blue("["), chalk.blue("]")]
const debugMsg = `${left} ${chalk.yellow("DEBUG")} ${right} ${chalk.gray(message)}`
console.log(debugMsg)
}
process.on("uncaughtException", (err) => client.debug(`ERROR ${err.message}`))
client.login(process.env.TOKEN)
declare module "discord.js" {
interface Client {
docsRawData: Documentation,
debug: (message: string) => void,
isDocsReady: boolean,
isDocsLocal: boolean,
docsParsedData: Map<
"extractor"|"equalizer"|"discord-player"|"ffmpeg"|"opus"|"utils"|"downloader",
Array<Data>
>,
webapp: Express
}
}
// for express
client.webapp.get("/", (req, res) => {
res.send("Keep Alive")
})
const port = process.env.PORT || 3000
client.webapp.listen(port, () => client.debug(`Keep Alive server started on ${port}`))