From 64bd55dae210fa1a8d6295647404fd3b6f4b0167 Mon Sep 17 00:00:00 2001 From: chikeozulumba Date: Fri, 19 Apr 2019 23:24:39 +0100 Subject: [PATCH] 164796899-feature: pagination support for articles - add app.json for heroku build [Delivers #164796899] --- app.json | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..da5c9a4 --- /dev/null +++ b/app.json @@ -0,0 +1,58 @@ +{ + "name": "cosmos-ah-backend", + "description": "", + "scripts": {}, + "env": { + "BASE_URL": { + "required": true + }, + "FACEBOOK_APP_SECRET": { + "required": true + }, + "FACEBOOK_CLIENT_ID": { + "required": true + }, + "GOOGLE_APP_SECRET": { + "required": true + }, + "GOOGLE_CLIENT_ID": { + "required": true + }, + "JWTKEY": { + "required": true + }, + "LINKEDIN_CLIENTID": { + "required": true + }, + "LINKEDIN_CLIENTSERVICE": { + "required": true + }, + "NODE_ENV": { + "required": true + }, + "PRODUCTION_STAGE": { + "required": true + }, + "SENDGRID_API_KEY": { + "required": true + }, + "TWITTER_CONSUMER_KEY": { + "required": true + }, + "TWITTER_CONSUMER_SECRET": { + "required": true + } + }, + "formation": { + "web": { + "quantity": 1 + } + }, + "addons": ["heroku-postgresql"], + "buildpacks": [ + { + "url": "heroku/nodejs" + } + ], + "stack": "heroku-18" +}