-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 1.29 KB
/
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
30
31
32
33
34
35
36
37
38
{
"name": "microfeedback-jira",
"description": "An easily-deployable feedback microservice collects user feedback as JIRA issues",
"repository": "https://github.com/microfeedback/microfeedback-jira",
"env": {
"JIRA_USERNAME": {
"description": "JIRA username for the user that will post issues",
"required": true
},
"JIRA_PASSWORD": {
"description": "JIRA password for the user that will post issues",
"required": true
},
"JIRA_HOST": {
"description": "JIRA host, e.g. 'yourcompany.atlassian.net'",
"required": true
},
"AKISMET_API_KEY": {
"description": "Akismet API key to use for spam detection",
"required": false
},
"ENABLE_AKISMET": {
"description": "Whether to use the Akismet API for syntax checking. Set to 'false' if AKISMET_API_KEY is set but you don't want spam checking.",
"required": false
},
"PERSPECTIVE_API_KEY": {
"description": "Perspective API key to use for toxicity scoring",
"required": false
},
"ENABLE_PERSPECTIVE": {
"description": "Whether to use the Perspective API for toxicity scoring. Set to 'false' if PERSPECTIVE_API_KEY is set but you don't want toxicity scoring.",
"required": false
}
},
"buildpacks": [
{"url": "heroku/nodejs"}
]
}