Skip to content

Commit

Permalink
Add Heroku Procfile
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed May 3, 2021
1 parent ae1a864 commit fcaeb38
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
worker: wayback -d web -c wayback.conf
46 changes: 46 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"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": "/welcome",
"scripts": {
"target": "echo 'target'"
},
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome.git"
},
{
"url": "https://github.com/tor-actions/heroku-buildpack-tor.git"
}
],
"environments": {
"test": {
"scripts": {
"test": "wayback -d web"
}
}
}
}
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module github.com/wabarc/wayback

// +heroku goVersion go1.16

go 1.16

require (
Expand Down

0 comments on commit fcaeb38

Please sign in to comment.