forked from github-education-resources/classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
47 lines (45 loc) · 1.22 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
{
"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": {
"CLASSROOM_WEBHOOK_PREFIX_URL": {
"description": "The URL for your application to receive webhooks ex https://classroom.github.com",
"required": true
},
"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": [
"heroku-postgresql",
"heroku-redis",
"memcachedcloud",
"newrelic"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
]
}