forked from ucfopen/Materia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
99 lines (99 loc) · 2.48 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
{
"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": {
"FUEL_ENV": {
"description": "FUELPHP Environment to load",
"required": true,
"value": "production"
},
"LTI_USERNAME_PARAM":{
"description": "Which LTI post param to use as a username",
"required": true,
"value": "lis_person_sourcedid"
},
"LTI_KEY":{
"description": "LTI Key for configuring your LMS",
"required": true,
"value": "my-demo-materia-heroku-key"
},
"LTI_SECRET":{
"description": "LTI secret for configuring your LMS",
"required": true,
"generator": "secret"
},
"MATERIA_AUTH_SALT":{
"description": "Secret salt for hashing authentication variables",
"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": {}
}