-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
42 lines (42 loc) · 862 Bytes
/
app.json
File metadata and controls
42 lines (42 loc) · 862 Bytes
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
{
"name": "Booster Symfony/MySQL Staging",
"stack": "heroku-18",
"env": {
"APP_DEBUG": {
"value": "false"
},
"APP_ENV": {
"value": "production"
},
"APP_LOG": {
"value": "errorlog"
},
"SECRET_KEY": {
"generator": "secret",
"description": "Symfony uses this value for encrypting the cookies used in the remember me functionality and for creating signed URIs when using ESI"
},
"COMPOSER_AUTH": {
"description": "Composer auth if nova needed."
}
},
"scripts": {
"postdeploy": "php bin/console doctrine:migrations:migrate --no-interaction"
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "jawsdb:kitefin",
"as": "DATABASE"
}
],
"buildpacks": [
{
"url": "heroku/php"
}
]
}