manifest.yml 938 B

1234567891011121314151617181920212223242526272829
  1. applications:
  2. - name: slack-invite-automation
  3. host: slack-invite-automation
  4. command: bin/www
  5. instances: 1
  6. memory: 128M
  7. disk_quota: 128M
  8. env:
  9. # your community or team name to display on join page
  10. COMMUNITY_NAME: SocketIO
  11. # your slack team url (ex: socketio.slack.com)
  12. SLACK_URL: socketio.slack.com
  13. # access token of slack
  14. # You can generate it in https://api.slack.com/web#auth
  15. # You should generate the token in admin user, not owner.
  16. # If you generate the token in owner user, missing_scope error will occur.
  17. #
  18. # You can test your token via curl:
  19. # curl -X POST 'https://YOUR-SLACK-TEAM.slack.com/api/users.admin.invite' \
  20. # --data 'email=EMAIL&token=TOKEN&set_active=true' \
  21. # --compressed
  22. SLACK_TOKEN: <token>
  23. # an optional security measure - if it is set, then that token will be required to get invited.
  24. # INVITE_TOKEN: <token>
  25. LOCALE: en