forked from r-Techsupport/TuringBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecrets.default.jsonc
27 lines (27 loc) · 1.16 KB
/
secrets.default.jsonc
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
26
27
// The contents of this file should *never* be shared.
// It contains authentication data
{
// The token used to login to discord
"discordAuthToken": "YOUR_DISCORD_AUTH_TOKEN_HERE",
// Database credentials
"mongodb": {
// If using Atlas, set the protocol to mongodb+srv://, and include a `/` at the end of your database URL
// Otherwise set it to mongodb://
"protocol": "mongodb://",
// the IP address or URL of your mongodb instance
// if using docker compose, set this to `mongo`
"address": "mongo",
// The name for the database collection the bot will use
"dbName": "turingbot",
// Authentication credentials
// docker compose default creds are `root`, and `root`, *do not use this in prod*
// If your server doesn't use authentication credentials, leave these empty: ""
"username": "YOUR_MONGO_USERNAME",
"password": "YOUR_MONGO_PASSWORD"
},
// These credentials are shared between the google and youtube modules.
"google": {
"apiKey": "YOUR_GOOGLE_API_KEY_HERE",
"cseId": "YOUR_GOOGLE_CSE_ID_HERE"
}
}