From eff3024173fc92af4fa2ed79cc8464e072eb759d Mon Sep 17 00:00:00 2001 From: Segun Ola Date: Wed, 4 Oct 2017 04:25:08 +0100 Subject: [PATCH] add app.json for heroku pipeline --- app.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..11b38ec --- /dev/null +++ b/app.json @@ -0,0 +1,27 @@ +{ + "name": "helloBooks", + "scripts": {}, + "env": { + "DATABASE_URL": { + "required": true + }, + "NODE_ENV": { + "required": true + }, + "NODE_MODULES_CACHE": { + "required": true + }, + "SECRET": { + "required": true + } + }, + "formation": {}, + "addons": [ + "papertrail" + ], + "buildpacks": [ + { + "url": "heroku/nodejs" + } + ] +}