-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
47 lines (47 loc) · 1.02 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
{
"name": "mie",
"description": "mieだよ〜",
"website": "https://rubykaigi.smarthr.co.jp/2024/",
"repository": "https://github.com/kufu/mie",
"success_url": "/2024",
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "5"
},
"WKHTMLTOPDF_DOWNLOAD_URL": {
"description": "font",
"value": "https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.focal_amd64.deb"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-1x"
}
},
"image": "heroku/ruby",
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "heroku-redis"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
},
{
"url": "https://github.com/chap/wkhtmltopdf-heroku-18-buildpack"
}
]
}