-
Notifications
You must be signed in to change notification settings - Fork 65
/
app.json
44 lines (44 loc) · 912 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
36
37
38
39
40
41
42
43
44
{
"name": "wayback",
"description": "A toolkit for snapshot webpage to Internet Archive, archive.today, IPFS and beyond.",
"keywords": [
"wayback"
],
"website": "https://wabarc.eu.org/",
"repository": "https://github.com/wabarc/wayback",
"logo": "https://avatars.githubusercontent.com/u/66000339",
"success_url": "/",
"scripts": {
"postdeploy": "wayback --version"
},
"env": {
"PORT": {
"description": "Port for web service",
"value": "8964"
}
},
"addons": [],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome.git"
},
{
"url": "https://github.com/tor-actions/heroku-buildpack-tor.git"
},
{
"url": "heroku/go"
}
],
"environments": {
"test": {
"scripts": {
"test": "wayback -d web"
}
}
},
"formation":{
"web":{
"quantity":1
}
}
}