-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
81 lines (80 loc) · 2.33 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
{
"name": "sga-lti",
"description": "an LTI implementation of Staff Graded Assignments, for use with edX",
"keywords": [
"Django",
"Python",
"MIT",
"Office of Digital Learning"
],
"website": "https://github.com/mitodl/sga-lti",
"repository": "https://github.com/mitodl/sga-lti",
"success_url": "/",
"scripts": {
"postdeploy": "./manage.py migrate"
},
"addons": [
"heroku-postgresql:hobby-dev",
"newrelic:wayne"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
],
"env": {
"ALLOWED_HOSTS": {
"description": "Array of allowed hostnames",
"default": "['*']"
},
"SGA-LTI_ADMIN_EMAIL": {
"description": "E-mail to send 500 reports to.",
"required": false
},
"SGA-LTI_EMAIL_HOST": {
"description": "Outgoing e-mail settings",
"required": false
},
"SGA-LTI_EMAIL_PASSWORD": {
"description": "Outgoing e-mail settings",
"required": false
},
"SGA-LTI_EMAIL_PORT": {
"description": "Outgoing e-mail settings",
"required": false,
"value": "587"
},
"SGA-LTI_EMAIL_TLS": {
"description": "Outgoing e-mail settings",
"required": false,
"value": "True"
},
"SGA-LTI_EMAIL_USER": {
"description": "Outgoing e-mail settings",
"required": false
},
"SGA-LTI_FROM_EMAIL": {
"description": "E-mail to use for the from field"
},
"NEW_RELIC_APP_NAME": {
"description": "Application identifier in New Relic.",
"default": "sga-lti"
},
"SECRET_KEY": {
"description": "Django secret key.",
"generator": "secret"
},
"SGA-LTI_SECURE_SSL_REDIRECT": {
"description": "Application-level SSL redirect setting.",
"required": false,
"value": "True"
},
"STATUS_TOKEN": {
"description": "Token to access the status API.",
"required": true
}
}
}