34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
# Local configuration file
|
|
|
|
config = {}
|
|
|
|
# Shared secret of your BigBlueButton server.
|
|
config.bbb = {}
|
|
config.bbb.sharedSecret = "33e06642a13942004fd83b3ba6e4104a"
|
|
|
|
# The port in which the API server will run.
|
|
config.server = {}
|
|
config.server.port = 3005
|
|
|
|
# Web hooks configs
|
|
config.hooks = {}
|
|
|
|
# Channels to subscribe to.
|
|
config.hooks.channels = {
|
|
mainChannel: 'from-akka-apps-redis-channel',
|
|
rapChannel: 'bigbluebutton:from-rap'
|
|
}
|
|
|
|
# Callbacks will be triggered for all the events in this list and only for these events.
|
|
# You only need to specify it if you want events that are not used by default or
|
|
# if you want to restrict the events used. See `config.coffee` for the default list.
|
|
#
|
|
# config.hooks.events = [
|
|
# { channel: config.hooks.channels.mainChannel, name: "MeetingCreatedEvtMsg" },
|
|
# { channel: config.hooks.channels.mainChannel, name: "MeetingEndedEvtMsg" },
|
|
# { channel: config.hooks.channels.mainChannel, name: "UserJoinedMeetingEvtMsg" },
|
|
# { channel: config.hooks.channels.mainChannel, name: "UserLeftMeetingEvtMsg" }
|
|
# ]
|
|
|
|
module.exports = config
|