-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.json
29 lines (29 loc) · 961 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "Slack DM for Jira Comments",
"description": "Get a DM in slack when someone @ mentions you in a Jira comment",
"repository": "https://github.com/msolomonTMG/jira-comment-slack-notification",
"logo": "https://i.imgur.com/fk1OMEO.png",
"keywords": ["node", "express", "jira", "slack"],
"env": {
"APP_URL": {
"description": "'https://YOUR-APP-NAME.herokuapp.com/' the trailing slash is important"
},
"JIRA_URL": {
"description": "The base URL of your Jira instance: 'https://example.atlassian.net' the lack of a trailing slash is important"
},
"SLACKBOT_TOKEN": {
"description": "The token generated by your Slackbot."
},
"SLACKBOT_OAUTH_TOKEN": {
"description": "The oauth token generated by your Slackbot"
},
"RSA_PRIVATE_KEY": {
"description": "The base64 encoded string of your RSA Private Key"
}
},
"addons": [
{
"plan": "mongolab:sandbox"
}
]
}