blob: f8353212ab1525979841928883ec141a84599e92 (
plain)
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
|
// Credentials
export const credentials = {
botToken: 'token here'
};
// Options
export const owners = [
'322862723090219008', //IRONM00N
'464970779944157204', //TrashCan
'487443883127472129' //Tyman
];
export const prefix = '-' as string;
export const dev = true as boolean;
export const devGuild = '695310188764332072' as string;
export const channels = {
log: 'id here',
error: 'id here',
dm: 'id here',
command: 'id here'
};
export const verbose = false;
// Database specific
export const db = {
host: 'localhost',
port: 5432,
username: 'username here',
password: 'password here'
};
|