forked from github-education-resources/classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
60 lines (49 loc) · 1.23 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
{
"name": "Classroom for GitHub",
"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": {
"GITHUB_CLIENT_ID": {
"description": "The GitHub Application Client ID.",
"required": true
},
"GITHUB_CLIENT_SECRET": {
"description": "The GitHub Application Client Secret.",
"required": true
},
"LANG": {
"required": true
},
"RACK_ENV": {
"required": true
},
"RAILS_ENV": {
"required": true
},
"RAILS_SERVE_STATIC_FILES": {
"required": true
},
"REDIS_PROVIDER": {
"value": "REDISTOGO_URL"
},
"SECRET_KEY_BASE": {
"required": true
},
"NON_STAFF_GITHUB_ADMIN_IDS": {
"description": "GitHub IDs of non GitHub staff members that have staff access.",
"required": true
}
},
"addons": [
"bonsai",
"heroku-postgresql",
"memcachedcloud",
"newrelic",
"redistogo"
]
}