-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
35 lines (35 loc) · 961 Bytes
/
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
{
"name": "phpwa-demo",
"description": "A repo, maybe get this from github",
"keywords": [
"php",
"symfony"
],
"repository": "https:\/\/github.com\/survos-sites\/phpwa-demo",
"scripts": {
"dokku": {
"predeploy": "bin/console tailwind:build && bin\/console importmap:install && bin\/console asset-map:compile",
"postdeploy": ""
}
},
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"value": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"generator": "echo 5"
}
},
"image": "gliderlabs\/herokuish",
"addons": [
"dokku-postgres",
"dokku-redis"
],
"buildpacks": [
{
"url": "https:\/\/github.com\/heroku\/heroku-buildpack-php.git"
}
]
}