forked from ucfopen/Materia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
124 lines (124 loc) · 3.36 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "Materia",
"description": "Run Materia on Heroku",
"keywords": [
"education",
"edtech",
"materia",
"widgets",
"h5p",
"openedu",
"open education",
"learning"
],
"website": "https://ucfopen.github.io/Materia-Docs/",
"logo": "https://ucfopen.github.io/Materia-Docs/assets/img/logos/color/materia-logo-square-color.svg",
"success_url": "/",
"scripts": {
"postdeploy": "composer run oil-install-quiet && php oil r widget:install_from_config"
},
"env": {
"SYSTEM_EMAIL":{
"description": "From email address for this server",
"required": true,
"value": "[email protected]"
},
"FUEL_LOG_THRESHOLD":{
"description": "Threshold for for which types of logs get written. See Readme",
"required": true,
"value": "300"
},
"SESSION_DRIVER":{
"description": "Where to keep user sessions? See Readme",
"required": true,
"value": "db"
},
"ASSET_STORAGE_DRIVER":{
"description": "Where to store author uploaded media? See Readme",
"required": true,
"value": "db"
},
"LTI_REMOTE_IDENTIFIER":{
"description": "Which LTI post param to use as a username. See Readme",
"required": true,
"value": "lis_person_sourcedid"
},
"LTI_REMOTE_USERNAME":{
"description": "Which LTI post param to use as a username, duplicate of LTI_REMOTE_IDENTIFIER",
"required": true,
"value": "lis_person_sourcedid"
},
"LTI_KEY":{
"description": "LTI Key for configuring your LMS. See Readme",
"required": true,
"value": "my-demo-materia-heroku-key"
},
"LTI_SECRET":{
"description": "LTI secret for configuring your LMS. See Readme",
"required": true,
"generator": "secret"
},
"AUTH_SALT":{
"description": "Secret salt for hashing authentication variables. See Readme",
"required": true,
"generator": "secret"
},
"AUTH_SIMPLEAUTH_SALT":{
"description": "Secret salt for hashing authentication variables. See Readme",
"required": true,
"generator": "secret"
},
"CRYPTO_KEY":{
"description": "Secret for cyrptography",
"required": true,
"generator": "secret"
},
"CRYPTO_IV":{
"description": "Another Secret for cyrptography",
"required": true,
"generator": "secret"
},
"CRYPTO_HMAC":{
"description": "Yep, it's another Secret for cyrptography",
"required": true,
"generator": "secret"
},
"CIPHER_KEY":{
"description": "Just one more Secret for cyrptography",
"required": true,
"generator": "secret"
},
"USER_SYSTEM_PASSWORD":{
"description": "Auto generated password for the admin user",
"required": true,
"generator": "secret"
},
"USER_INSTRUCTOR_PASSWORD":{
"description": "Auto generated password for an instructor",
"required": true,
"generator": "secret"
},
"USER_STUDENT_PASSWORD":{
"description": "Auto generated password for a student",
"required": true,
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/nodejs",
"addons": [
{
"plan": "cleardb:ignite"
}
],
"buildpacks": [
{"url": "heroku/php"},
{"url": "heroku/nodejs"}
],
"environments": {}
}