Files
ttt-discord-bot/server/configuration.ts
mightypanders 39e4ca69f1 first steps
2021-11-08 17:34:26 +01:00

25 lines
417 B
TypeScript

export const config = {
server: {
bodyParser: {
urlEncodedOptions: {
inflate: true,
limit: '5mb',
type: 'application/x-www-form-urlencoded',
extended: true,
parameterLimit: 1000
},
jsonOptions: {
inflate: true,
limit: '5mb',
type: 'application/json',
strict: true
}
}
},
debug: true,
port: 1234,
token: "discord-bot-token",
guild_id: "id",
client_id: "id"
}