forked from ucfopen/UDOIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·89 lines (89 loc) · 2.46 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "UDOIT",
"description": "The Universal Design Online content Inspection Tool, or UDOIT identifies and fixes accessibility issues in Canvas by Instructure.",
"keywords": [
"education",
"canvas",
"CDL",
"EDU",
"UCF",
"Instructure",
"508"
],
"website": "https://cdl.ucf.edu/initiatives/udoit/",
"repository": "https://github.com/ucfopen/UDOIT",
"success_url": "/",
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"env": {
"CONSUMER_KEY": {
"description": "LTI consumer key entered when adding UDOIT LTI to Canvas",
"generator": "secret"
},
"SHARED_SECRET": {
"description": "LTI secret entered when adding UDOIT LTI to Canvas",
"generator": "secret"
},
"OAUTH2_ID": {
"description": "Oauth ID from the developer api key created by your admin"
},
"OAUTH2_KEY": {
"description": "Oauth Key from the developer api key created by your admin"
},
"OAUTH2_URI": {
"description": "Full url to your oauth2responce.php file",
"value": "https://your.herokuapp.com/oauth2response.php"
},
"GOOGLE_API_KEY": {
"description": "Google API key for caption detection support",
"required": false
},
"VIMEO_API_KEY": {
"description": "Vimeo API key for caption detection support",
"required": false
},
"GA_TRACKING_CODE": {
"description": "Google Analytics tracking code",
"required": false
},
"USE_HEROKU_CONFIG": {
"description": "needed to use the Heroku configuration",
"value": "true"
},
"CANVAS_NAV_ITEM_NAME" : {
"description": "The text displayed in the canvas navigation menu to launch this app",
"value": "UDOIT"
},
"WORKER_ENABLED": {
"description": "Enable the background worker (requires you turn on the worker dyno).",
"value": "true"
},
"SCAN_FILE_SIZE_LIMIT": {
"description": "Max file size to scan, anything larger gets set as unscannable.",
"value": "50000000"
},
"ALT_TEXT_LENGTH_LIMIT": {
"description": "Maximum character length for alt-text before the item gets flagged as a warning.",
"value": "125"
}
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
],
"scripts": {
"postdeploy": "composer db-setup"
}
}