-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
29 lines (29 loc) · 997 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": "MarvinJS",
"description": "A campus / community slack bot designed for 42 and relative campuses.",
"keywords": ["42", "Encole 42", "Slack Bot", "Custom Slackbot", "42 Silicon Valley"],
"website": "https://github.com/ItsWendell/marvin-js",
"repository": "https://github.com/ItsWendell/marvin-js",
"success_url": "https://github.com/ItsWendell/marvin-js",
"image": "heroku/nodejs",
"addons": ["mongolab"],
"env": {
"SLACK_TOKEN": {
"description": "[Slack] Your Slack Bot user token.",
"required": true
},
"INTRA42_CLIENT_ID": {
"description": "[Intra42] Your Intra42 client id.",
"required": false
},
"INTRA42_CLIENT_SECRET": {
"description": "[Intra42] Your Intra42 client secret.",
"required": false
},
"INTRA42_CAMPUS_ID": {
"description": "[Intra42] Your Intra42 primary campus id.",
"required": false,
"value": "14"
}
}
}