aboutsummaryrefslogtreecommitdiff
path: root/src/config/example-options.ts
blob: fadd640e20831ea48a3646b0a1a1c6801541e72c (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
30
31
32
33
34
35
36
37
38
39
import { Snowflake } from 'discord.js';

// Credentials
export const credentials = {
	token: 'Token Here',
	devToken: 'Token Here',
	hypixelApiKey: 'API Key Here'
};

// Options
export const owners: Snowflake[] = [
	'322862723090219008', //IRONM00N
	'464970779944157204', //TrashCan
	'487443883127472129' //Tyman
];
export const prefix = '-' as string;
export const dev = true as boolean;
export const devGuild = '1000000000000000' as Snowflake;
export const channels: { log: Snowflake; error: Snowflake; dm: Snowflake; command: Snowflake } = {
	log: '1000000000000000',
	error: '1000000000000000',
	dm: '1000000000000000',
	command: '1000000000000000'
};

// Database specific
export const db = {
	host: 'localhost',
	port: 5432,
	username: 'username here',
	password: 'password here'
};

// Logging
export const logging: { db: boolean; verbose: boolean; info: boolean } = {
	db: false,
	verbose: true,
	info: true
};