mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 08:57:58 +03:00
25 lines
517 B
JSON
25 lines
517 B
JSON
// This is an example conf.json5 file, which shows how you should control
|
|
// this bot.
|
|
|
|
{
|
|
TACHI_SERVER_LOCATION: "https://tachi.example.com",
|
|
HTTP_SERVER: {
|
|
URL: "https://tachi-bot.example.com",
|
|
},
|
|
OAUTH: {
|
|
CLIENT_SECRET: "CSfoobar",
|
|
CLIENT_ID: "CIfoobar",
|
|
},
|
|
DISCORD: {
|
|
TOKEN: "foobar",
|
|
SERVER_ID: "123123123",
|
|
GAME_CHANNELS: {
|
|
bms: "1234",
|
|
usc: "1235",
|
|
// ... add more incase needed.
|
|
},
|
|
// A list of user IDs for users who should be allowed to do more stuff.
|
|
ADMIN_USERS: [],
|
|
},
|
|
}
|