aboutsummaryrefslogtreecommitdiff
path: root/src/config/example-options.ts
blob: ea04fe3ca8785b857d055ed2c0cddd63b575b93e (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
// Credentials
export const credentials = {
	botToken: 'token here'
};

// Options
export const owners = [
	'487443883127472129' // Tyman#7318
];
export const prefix = '-' as string;
export const dev = true as boolean;
export const channels = {
	log: 'id here',
	error: 'id here',
	dm: 'id here',
	command: 'id here'
};

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