aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/example-options.ts42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/config/example-options.ts b/src/config/example-options.ts
deleted file mode 100644
index 1b384c4..0000000
--- a/src/config/example-options.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-import { Config } from '#lib';
-
-export default new Config({
- credentials: {
- token: '[TOKEN]',
- betaToken: '[TOKEN]',
- devToken: '[TOKEN]',
- hypixelApiKey: '[API_KEY]',
- wolframAlphaAppId: '[APP_ID]',
- imgurClientId: '[CLIENT_ID]',
- imgurClientSecret: '[CLIENT_SECRET]',
- sentryDsn: 'SENTRY_DSN',
- perspectiveApiKey: '[PERSPECTIVE_API_KEY]'
- },
- environment: 'development',
- owners: [
- '322862723090219008', //IRONM00N
- '487443883127472129' //Tyman
- ],
- prefix: '-',
- channels: {
- log: '1000000000000000',
- error: '1000000000000000',
- dm: '1000000000000000',
- servers: '1000000000000000'
- },
- db: {
- host: 'localhost',
- port: 5432,
- username: '[USER_NAME]',
- password: '[PASSWORD]'
- },
- logging: {
- db: false,
- verbose: false,
- info: true
- },
- supportGuild: {
- id: '812400566235430912',
- invite: 'https://discord.gg/mWtDmq6XcB'
- }
-});