-
Notifications
You must be signed in to change notification settings - Fork 65
/
app.json
49 lines (49 loc) · 1.4 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
{
"name": "UDOIT",
"description": "The Universal Design Online content Inspection Tool, or UDOIT (pronounced, 'You Do It') enables faculty to identify accessibility issues in their Learning Management System. It will scan a course, generate a report, and provide resources on how to address common accessibility issues.",
"keywords": [
"education",
"canvas",
"CDL",
"EDU",
"UCF",
"Instructure",
"508"
],
"website": "https://cdl.ucf.edu/initiatives/udoit/",
"repository": "https://github.com/ucfopen/UDOIT",
"success_url": "/",
"env": {
"APP_ENV": {
"description": "Application environment can either be 'dev' or 'prod'.",
"value": "prod"
},
"APP_LMS": {
"description": "LMS which UDOIT will work in.",
"value": "canvas"
},
"BASE_URL": {
"description": "Full URL to your instance.",
"value": "https://your.herokuapp.com"
},
"JWK_BASE_URL": {
"description": "Overrides `iss` to use an alternative url for JWK. Leave empty if using cloud hosted Canvas.",
"value": ""
},
"HEROKU_TIMEOUT": {
"description": "Web requests time out at 30 seconds causing the app to crash. Value should be significantly less than 30 to prevent this.",
"value": "15"
}
},
"addons": [
"heroku-postgresql:mini"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
},
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
]
}