diff --git a/README.md b/README.md index 53babff..d3c8fa7 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,10 @@ Supported PostgreSQL versions: Older versions of PostgreSQL might also work but this project is not tested on 8.x branches. +## Run on Heroku + +[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/sosedoff/pgweb) + ## Usage Start server: diff --git a/app.json b/app.json new file mode 100644 index 0000000..87dff9f --- /dev/null +++ b/app.json @@ -0,0 +1,19 @@ +{ + "name": "pgweb", + "description": "A web-based frontend to your Postgres database.", + "website": "https://github.com/pvh/pgweb", + "repository": "https://github.com/pvh/pgweb", + "logo": "https://avatars1.githubusercontent.com/u/71051?v=2&s=400", + "success_url": "/", + "keywords": [ + "postgres", + "database", + "frontend" + ], + "addons": [ + "heroku-postgresql" + ], + "env": { + "BUILDPACK_URL": "https://github.com/kr/heroku-buildpack-go" + } +}