forked from github-education-resources/classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (42 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "GitHub Classroom",
"description": "Automates repository creation and access control, making it easy to distribute starter code and collect assignments on GitHub.",
"website": "https://classroom.github.com",
"repository": "https://classroom.github.com",
"logo": "https://octodex.github.com/images/Professortocat_v2.png",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"env": {
"AIRBRAKE_PROJECT_ID": {
"description": "the ID for the application in airbrake.io, if set Airbrake will be enabled",
"required": false
},
"AIRBRAKE_PROJECT_KEY": {
"description": "the PROJECT_KEY for the application in airbrake.io, if set Airbrake will be enabled",
"required": false
},
"GITHUB_CLIENT_ID": {
"description": "The GitHub Application Client ID.",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "The GitHub Application Client Secret.",
"required": true
},
"REDIS_PROVIDER": {
"value": "REDIS_URL"
},
"NON_STAFF_GITHUB_ADMIN_IDS": {
"description": "GitHub IDs of non GitHub staff members that have staff access.",
"required": false
}
},
"addons": [
"bonsai",
"heroku-postgresql",
"heroku-redis",
"memcachedcloud",
"newrelic"
]
}