app.json 828 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "Slack Invite Automation",
  3. "description": "A tiny web application to invite a user into your slack team.",
  4. "repository": "https://github.com/outsideris/slack-invite-automation",
  5. "keywords": ["node", "slack", "invite"],
  6. "env": {
  7. "COMMUNITY_NAME": {
  8. "description": "Your team name",
  9. "value": "YOUR TEAM NAME"
  10. },
  11. "SLACK_URL": {
  12. "description": "Your slack url(ex: socketio.slack.com)",
  13. "value": "YOUR-TEAM.slack.com"
  14. },
  15. "SLACK_TOKEN": {
  16. "description": "access token of slack, You can generate it in https://api.slack.com/web#auth",
  17. "value": ""
  18. },
  19. "INVITE_TOKEN": {
  20. "description": "Shared invite token used to get access. Leave blank if you don't want users to have to provide a token.",
  21. "value": "",
  22. "required": false
  23. }
  24. }
  25. }