aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-08-02 20:40:50 -0400
committerBen Burwell <ben@benburwell.com>2015-08-02 20:40:50 -0400
commitac0e595a531e212e4885633eb043760bcc5d4946 (patch)
tree07ae26b03b94058e556ddbdc249e38f6b31a4b22
parent68c62d41d2b77f4aa9dbb177e47acf6caa369074 (diff)
We probably need to install pg before we try to use it
-rw-r--r--app.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.json b/app.json
index 10cc28d..7bc9460 100644
--- a/app.json
+++ b/app.json
@@ -3,6 +3,6 @@
"heroku-postgresql:hobby-dev"
],
"scripts": {
- "postdeploy": "node db/bootstrap.js"
+ "postdeploy": "npm install pg; node db/bootstrap.js"
}
}