schat2-clive/config/default.js

30 lines
571 B
JavaScript
Raw Normal View History

'use strict';
module.exports = {
2021-11-04 00:51:43 +00:00
user: {
id: 'clive',
key: 'abcdefgh12345678',
username: 'Clive',
// optional
gender: 'male',
countryCode: 'GB',
2021-11-04 00:51:43 +00:00
birthdate: new Date(1952, 11, 10),
avatar: 'https://i.imgur.com/IZwrjjG.png',
},
uniqueUsername: true,
socket: 'ws://127.0.0.1:3000/socket',
api: 'http://127.0.0.1:3000/api',
2021-11-06 00:33:52 +00:00
reconnectDelay: 10, // seconds
2021-11-04 00:51:43 +00:00
prefix: '~',
style: {
color: 'var(--message-56)',
},
channels: ['GamesNight'],
2021-11-06 00:33:52 +00:00
games: ['mash', 'trivia'],
trivia: {
mode: 'first', // first or timeout
rounds: 10,
timeout: 30,
},
};