Skip to content
Snippets Groups Projects
Commit 401a5294 authored by Laily Ajellu's avatar Laily Ajellu
Browse files

HTML5 - removes config.js and removes a package not needed anymore from .meteor/packages

parent d3c6cf6a
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@
# but you can also edit it by hand.
4commerce:env-settings
mrt:redis@0.1.3
standard-app-packages@1.0.9
arunoda:npm@0.2.6
amplify
......
// TODO: should be split on server and client side
// // Global configurations file
let clientConfig = {};
// Default global variables
clientConfig.appName = 'BigBlueButton HTML5 Client';
clientConfig.bbbServerVersion = '1.0-beta';
clientConfig.copyrightYear = '2015';
clientConfig.html5ClientBuild = 'NNNN';
clientConfig.defaultWelcomeMessage =
'Welcome to %%CONFNAME%%!\r\rFor help on using BigBlueButton see ' +
'these (short) <a href="event:http://www.bigbluebutton.org/content/videos"><u>tutorial ' +
'videos</u></a>.\r\rTo join the audio bridge click the gear icon (upper-right hand corner). ' +
' Use a headset to avoid causing background noise for others.\r\r\r';
const tempString = 'This server is running a build of ' +
"<a href='http://docs.bigbluebutton.org/1.0/10overview.html' target='_blank'><u>BigBlueButton";
clientConfig.defaultWelcomeMessageFooter = `${tempString} ` +
`${clientConfig.bbbServerVersion}</u></a>.`;
clientConfig.maxUsernameLength = 30;
clientConfig.maxChatLength = 140;
clientConfig.lockOnJoin = true;
//// Application configurations
clientConfig.app = {};
//default font sizes for mobile / desktop
clientConfig.app.mobileFont = 16;
clientConfig.app.desktopFont = 14;
// Will offer the user to join the audio when entering the meeting
clientConfig.app.autoJoinAudio = false;
clientConfig.app.listenOnly = false;
clientConfig.app.skipCheck = false;
// Flag for HTTPS. True by default
clientConfig.app.httpsConnection = true;
// The amount of time the client will wait before making another call to
// successfully hangup the WebRTC conference call
clientConfig.media = {};
clientConfig.media.WebRTCHangupRetryInterval = 2000;
// specifies whether to use SIP.js for audio over mod_verto
clientConfig.media.useSIPAudio = true;
// Configs for redis
const redisConfig = {
host: '127.0.0.1',
post: '6379',
timeout: 5000,
channels: {
fromBBBApps: 'bigbluebutton:from-bbb-apps:*',
toBBBApps: {
pattern: 'bigbluebutton:to-bbb-apps:*',
chat: 'bigbluebutton:to-bbb-apps:chat',
captions: 'bigbluebutton:to-bbb-apps:caption',
meeting: 'bigbluebutton:to-bbb-apps:meeting',
presentation: 'bigbluebutton:to-bbb-apps:presentation',
users: 'bigbluebutton:to-bbb-apps:users',
voice: 'bigbluebutton:to-bbb-apps:voice',
whiteboard: 'bigbluebutton:to-bbb-apps:whiteboard',
polling: 'bigbluebutton:to-bbb-apps:polling',
},
},
};
export { clientConfig, redisConfig };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment