diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-06-16 14:32:18 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-06-16 14:32:18 -0400 |
commit | 0e87bbd3940d89defcb04926587b35c8f4d1947f (patch) | |
tree | e50860d4dc25a11d4c3977b583284c4bcad1b077 /src/config | |
parent | 661e4c9935aeb8760dafc7ced4bbec6cc356a033 (diff) | |
download | tanzanite-0e87bbd3940d89defcb04926587b35c8f4d1947f.tar.gz tanzanite-0e87bbd3940d89defcb04926587b35c8f4d1947f.tar.bz2 tanzanite-0e87bbd3940d89defcb04926587b35c8f4d1947f.zip |
remove util classes, move config out of src
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/example-options.ts | 42 |
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' - } -}); |