From 966b49fb77cc0723e8c8ab9ef8c400a84aafd1b8 Mon Sep 17 00:00:00 2001 From: Peter van Hardenberg Date: Wed, 29 Oct 2014 11:58:32 -0700 Subject: [PATCH] heroku button --- README.md | 4 ++++ app.json | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 app.json 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" + } +}