config.js 1.2 KB

1234567891011121314151617181920212223242526
  1. module.exports = {
  2. // your cummunity or team name to display on join page.
  3. community: 'YOUR-TEAM-NAME',
  4. // your slack team url (ex: socketio.slack.com)
  5. slackUrl: 'YOUR-TEAM.slack.com',
  6. // access token of slack
  7. // You can generate it in https://api.slack.com/web#auth
  8. //
  9. // You can test your token via curl:
  10. // curl -X POST 'https://YOUR-SLACK-TEAM.slack.com/api/users.admin.invite' \
  11. // --data 'email=EMAIL&channels=CHANNEL_ID&token=TOKEN&set_active=true' \
  12. // --compressed
  13. slacktoken: 'YOUR-ACCESS-TOKEN',
  14. // channels to join when the user is invited.(Array of channel-id)
  15. // You can find id of channels in your slack.(look at sidebar on the left)
  16. // channel list's HTML looks like:
  17. // <li class="channel_C024R4462 channel ">
  18. // <a class="channel_name" data-channel-id="C024R4462">
  19. // <span class="unread_just_C024R4462 unread_just hidden">0</span>
  20. // <span class="unread_highlight_C024R4462 unread_highlight hidden">0</span>
  21. // <span class="overflow-ellipsis"><span class="prefix">#</span>codeport</span>
  22. // </a>
  23. // </li>
  24. // "C024R4462" is channel id(in data-channel-id)
  25. channels: ["CHANNEL-ID", "CHANNEL-ID"].join(',')
  26. };