-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
33 lines (33 loc) · 943 Bytes
/
app.json
File metadata and controls
33 lines (33 loc) · 943 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
{
"name": "Selenium Heroku Worker",
"description": "A Python Selenium Worker that runs in the background without H12 errors.",
"repository": "https://github.com/Kzapas/Heroku-Selenium-Worker",
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Python-logo-notext.svg/768px-Python-logo-notext.svg.png",
"keywords": ["python", "flask", "beginner", "minimal", "selenium"],
"addons": [ "redistogo" ],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
},
{
"url": "heroku/python"
}
],
"env": {
"CHROMEDRIVER_PATH": {
"value": "/app/.chromedriver/bin/chromedriver"
},
"GOOGLE_CHROME_BIN": {
"value": "/app/.apt/usr/bin/google-chrome"
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}