-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
44 lines (44 loc) · 1.06 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
{
"addons": [
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
],
"description": "Release script for MIT ODL engineering projects",
"env": {
"BOT_ACCESS_TOKEN": {
"description": "Slack Bot access token"
},
"SLACK_ACCESS_TOKEN": {
"description": "Slack access token"
},
"GITHUB_ACCESS_TOKEN": {
"description": "Github access token"
},
"PORT": {
"description": "Heroku port number to use for web server"
},
"TIMEZONE": {
"description": "The time zone of the team"
},
"SLACK_SECRET": {
"description": "The secret to authenticate Slack requests to our APIs"
}
},
"keywords": [
"Python",
"MIT",
"Office of Digital Learning"
],
"name": "odl-release-script",
"repository": "https://github.com/mitodl/release-script",
"website": "https://github.com/mitodl/release-script"
}