forked from VATSIM-UK/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
61 lines (61 loc) · 1.03 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
{
"name": "vatsimuk/core",
"description": "VATSIM UK Core Framework",
"scripts": {
},
"env": {
"APP_ENV": "development",
"APP_DEBUG": "true",
"APP_DEBUGBAR": "true",
"APP_KEY": {
"required": true
},
"APP_IS_LOCAL": "true",
"CACHE_DRIVER": "file",
"COMPOSER_AUTH": {
"required": true
},
"COOKIE_CONSENT_ENABLED": "true",
"HEROKU_APP_NAME": {
"required": true
},
"QUEUE_DRIVER": "sync",
"MAIL_DRIVER": "log",
"SSO_BASE": {
"required": true
},
"SSO_CERT": {
"required": true
},
"SSO_KEY": {
"required": true
},
"SSO_SECRET": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/php"
},
{
"url": "heroku/nodejs"
}
],
"addons": [
{
"plan": "jawsdb-maria:kitefin",
"as": "CORE_DATABASE"
},
{
"plan": "jawsdb-maria:kitefin",
"as": "CTS_DATABASE"
}
]
}