From 6dd0e915e8c81b66057a3c045206f713bd3a5407 Mon Sep 17 00:00:00 2001 From: Dmitry Trager Date: Mon, 7 Nov 2016 13:12:26 +0300 Subject: [PATCH] Add app.json config for review apps --- app.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..c716306 --- /dev/null +++ b/app.json @@ -0,0 +1,12 @@ +{ + "name": "Rails Base API", + "description": "Skeleton for new Rails 4 application for REST API", + "env": { + "ALLOW_REQUESTS_FROM": { "required": true }, + "RACK_ENV": { "required": true }, + "SECRET_KEY_BASE": { "required": true } + }, + "addons": [ + "heroku-postgresql:hobby-dev" + ] +}