diff options
author | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-04-27 21:06:22 -0600 |
---|---|---|
committer | TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> | 2021-04-27 21:06:22 -0600 |
commit | 763fb7d98c3accbb21adf035a7cf0a83cb9533c9 (patch) | |
tree | 9d333fbca2a2a8e19d79904a4e29226174925cfc /src/config | |
download | tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.gz tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.tar.bz2 tanzanite-763fb7d98c3accbb21adf035a7cf0a83cb9533c9.zip |
legit just copy utilibot v2 code
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/example-options.ts | 30 |
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' +}; |