30 lines
571 B
JavaScript
30 lines
571 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
user: {
|
|
id: 'clive',
|
|
key: 'abcdefgh12345678',
|
|
username: 'Clive',
|
|
// optional
|
|
gender: 'male',
|
|
countryCode: 'GB',
|
|
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',
|
|
reconnectDelay: 10, // seconds
|
|
prefix: '~',
|
|
style: {
|
|
color: 'var(--message-56)',
|
|
},
|
|
channels: ['GamesNight'],
|
|
games: ['mash', 'trivia'],
|
|
trivia: {
|
|
mode: 'first', // first or timeout
|
|
rounds: 10,
|
|
timeout: 30,
|
|
},
|
|
};
|