-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
48 lines (48 loc) · 1.47 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
{
"name": "Spotlight Reports for Canvas",
"description": "Spotlight Reports allows you to view stats about instructors within a sub-account",
"keywords": [
"canvas",
"spotlight",
"reports"
],
"addons": [
"heroku-postgresql",
"scheduler:standard"
],
"scripts": {
"postdeploy": "bundle exec rake db:migrate && bundle exec rake populate_database"
},
"env": {
"OAUTH_KEY": {
"description": "A key you'll enter when adding this to Canvas",
"generator": "secret"
},
"OAUTH_SECRET": {
"description": "A shared secret you'll need when adding this to Canvas",
"generator": "secret"
},
"API_URL": {
"description": "The URL of your canvas instance's api, e.g. https://<your-school>.instructure.com/api"
},
"API_TOKEN": {
"description": "The API Token you saved (Account => Settings => New Access Token)"
},
"TERM_FILTER": {
"description": "[optional] Comma seperated list of Term Ids to filter out.",
"required": false
},
"COURSE_FILTER": {
"description": "[optional] Comma seperated list of Course Ids to filter out.",
"required": false
},
"ACCOUNT_FILTER": {
"description": "[optional] Comma seperated list of Account Ids to filter out.",
"required": false
},
"INCLUDE_COMPLETED_COURSES": {
"description": "[optional] true (include completed courses) or false (do not include completed courses)",
"required": false
}
}
}