aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/example-options.ts30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/config/example-options.ts b/src/config/example-options.ts
new file mode 100644
index 0000000..ce204e9
--- /dev/null
+++ b/src/config/example-options.ts
@@ -0,0 +1,30 @@
+// Credentials
+export const credentials = {
+ botToken: 'token here',
+ dblToken: 'token here',
+ dblWebhookAuth: 'auth here'
+};
+
+// Options
+export const owners = [
+ '487443883127472129', // Tyman#7318
+ '642416218967375882' // 💜Clari#7744
+];
+export const prefix = 'u2!' as string;
+export const dev = true as boolean;
+export const channels = {
+ dblVote: 'id here',
+ log: 'id here',
+ error: 'id here',
+ dm: 'id here',
+ command: 'id here'
+};
+export const topGGPort = 3849;
+
+// Database specific
+export const db = {
+ host: 'localhost',
+ port: 5432,
+ username: 'username here',
+ password: 'password here'
+};