module.exports = { // your cummunity or team name to display on join page. community: 'YOUR-TEAM-NAME', // your slack team url (ex: socketio.slack.com) slackUrl: 'YOUR-TEAM.slack.com', // access token of slack // You can generate it in https://api.slack.com/web#auth slacktoken: 'YOUR-ACCESS-TOKEN', // channels to join when the user is invited.(Array of channel-id) // You can find id of channels in your slack.(look at sidebar on the left) // channel list's HTML looks like: //
  • // // // // #codeport // //
  • // "C024R4462" is channel id(in data-channel-id) channels: ["CHANNEL-ID", "CHANNEL-ID"].join(',') };