app.json 628 B

1234567891011121314151617181920
  1. {
  2. "name": "Slack Invite Automation",
  3. "description": "A tiny web application to invite a user info 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. }
  20. }