-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
90 lines (89 loc) · 2.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Hubot",
"description": "Hubot for chatOps",
"repository": "https://github.com/andreash92/andreasbot",
"logo": "https://a.slack-edge.com/ae7f/plugins/hubot/assets/service_512.png",
"keywords": ["node", "npm", "hubot", "bot", "chatOps"],
"addons":[
{
"plan": "mongolab:sandbox",
"as": "MONGOLAB"
}
],
"env": {
"HUBOT_SLACK_TOKEN": {
"description": "Enables Hubot integration with Slack",
"required": true
},
"ENCRYPTION_ALGORITHM": {
"description": "Algorithm for the data encryption (like Tokens)",
"required":true,
"value": "aes-256-ctr"
},
"ENCRYPTION_KEY": {
"description": "Set a 32-chars key for the encryption. Please don't leave default value. http://www.unit-conversion.info/texttools/random-string-generator/",
"required":true,
"value":"qg31qsANkNtcTdL9WrLAHSRG3Zs1oaSg"
},
"APIAI_TOKEN": {
"description": "Enables Hubot integration with Dialogflow (ex api.ai)",
"required": false
},
"GITHUB_APP_ID": {
"description": "ID of the registered Github App",
"required": false
},
"GITHUB_PEM":{
"description": "GitHub App's Private Key in text format",
"required": false
},
"GITHUB_PEM_DIR":{
"description": "Directory of Github App private key file (.pem)",
"required": false
},
"GITHUB_WEBHOOK_SECRET": {
"description": "If you use webhook secret, enter here the secret string.",
"required": false
},
"GITHUB_APP_CLIENT_ID": {
"description": "Needed for user authentication (OAuth). \nCan be found at the botton of your registered GitHub App settings page",
"required": false
},
"GITHUB_APP_CLIENT_SECRET": {
"description": "Needed for user authentication (OAuth). \nCan be found at the botton of your registered GitHub App settings page",
"required": false
},
"HUBOT_HOST_URL": {
"description": "Full url of the bot. Heroku example: https://<app name>.herokapp.com",
"required": false
},
"HUBOT_TRELLO_KEY": {
"description": "Located in the first box here: https://trello.com/app-key",
"required": false
},
"HUBOT_TRELLO_TEAM": {
"description": "Trello Team shortName. Located in settings of your team",
"required": false
},
"HUBOT_TRELLO_OAUTH": {
"description": "Scroll down here: https://trello.com/app-key",
"required": false
},
"JENKINS_URL": {
"description": "Jenkins full host url",
"required": false
},
"HUBOT_EMAIL": {
"description": "An email account for hubot and standup reports function. (tested: outlook, gmail)",
"required": false
},
"HUBOT_EMAIL_PASS": {
"description": "Password of hubot email account",
"required": false
},
"STANDUPS_EMAIL":{
"description":"a preconfigure email for sending standups reports",
"required":false
}
}
}