-
Notifications
You must be signed in to change notification settings - Fork 34
/
app.json
98 lines (98 loc) · 3 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
{
"name": "Obojobo Next",
"description": "Run Obojobo Next on Heroku",
"keywords": ["education", "edtech", "obojobo", "openedu", "open education", "learning"],
"website": "https://ucfopen.github.io/Obojobo-Docs/",
"logo": "https://ucfopen.github.io/Obojobo-Docs/assets/images/obojobo_blue.svg",
"success_url": "/",
"scripts": {
"postdeploy": "cd node_modules/obojobo-express && yarn sampleDraft:seed",
"purgedata": "yarn run obojobo_purge_data"
},
"env": {
"DB_SSL_JSON": {
"description": "PG-Promise SSL Configuration. https://github.com/vitaly-t/pg-promise/wiki/Connection-Syntax",
"value": "{\"rejectUnauthorized\":false}"
},
"DB_TIMEOUT": {
"description": "DB Query timeout in milliseconds https://github.com/brianc/node-postgres/pull/1760",
"value": "29000"
},
"OBO_LTI_KEYS_JSON": {
"description": "Edit the secret value. JSON string for LTI key:secret values.",
"value": "{\"obo-production-lti-key\":\"CHANGE_THIS_VALUE_NOW\"}"
},
"OBO_LTI_USERNAME_PARAM": {
"description": "Which LTI Launch Param should Obojobo Use as a Username?",
"value": "user_id"
},
"OBO_COOKIE_SECRET": {
"description": "Do not change. Secret string used to encrypt cookie data",
"generator": "secret"
},
"OBO_COOKIE_SECURE":{
"description": "Do not change. Restricts cookies to https.",
"value": "true"
},
"DEBUG": {
"description": "Logging Verbosity. Use obojobo_server:* for more output.",
"value": "obojobo_server:error,obojobo_server:warn"
},
"YARN_PRODUCTION": {
"description": "Do not change. Makes sure yarn install includes dev dependencies",
"value": "false"
},
"OBO_DEMO_PURGE_MODE": {
"description": "Automatically purge old data for demo purposes or to limit database growth. Additional addon setup required.",
"value": "disabled"
},
"OBO_DEMO_PURGE_DAYS_AGO": {
"description": "If purge mode is enabled, purge data older than this many days",
"value": "7"
},
"OBO_EDITLOCK_TIME_UNTIL_RELEASE_MINUTES":{
"description": "Editor lock: period of inactivity to release the lock",
"value": "45"
},
"OBO_EDITLOCK_TIME_UNTIL_WARN_MINUTES":{
"description": "Editor lock: period of inactivity to warn the user about lock release",
"value": "40"
},
"OBO_EDITLOCK_DB_LOCK_DURATION":{
"description": "Editor lock: period of time a lock lasts unless it is renewed.",
"value": "5"
},
"OBO_OPTIONAL_NODES":{
"required": false,
"description": "Comma separated list of optional nodes to enable",
"value": ""
},
"OBO_LTI_GUID":{
"required": false,
"description": "A GUID unique to this install of Obojobo. Google LTI launch param tool_consumer_instance_guid for more details.",
"value": "my.unique.heroku-obojobo-guid"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/nodejs",
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "13"
}
},
"scheduler"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"environments": {}
}