From d67cc30b53050e7b4e84142763681092a080d36e Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Mon, 5 Apr 2021 23:30:58 -0700 Subject: [PATCH] Add `app.json` file --- app.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..07e2d5f --- /dev/null +++ b/app.json @@ -0,0 +1,46 @@ +{ + "name": "kcal – the personal food nutrition journal", + "description": "Self-hostable web app for food and recipe nutrition tracking.", + "keywords": [ + "fitness", + "food", + "heath", + "laravel", + "nutrition", + "php", + "recipes", + "self-host" + ], + "repository": "https://github.com/kcal-app/kcal", + "website": "http://demo.kcal.cooking", + "buildpacks": [ + { + "url": "heroku/php" + } + ], + "addons": [ + "heroku-postgresql", + "heroku-redis" + ], + "env": { + "APP_KEY": { + "description": "Used for the auth system.", + "generator": "secret" + }, + "APP_TIMEZONE": { + "description": "Application time zone.", + "value": "Etc/UTC" + }, + "DB_CONNECTION": { + "description": "Database driver.", + "value": "pgsql" + }, + "SCOUT_DRIVER": { + "description": "Search driver ('algolia', 'elastic', or 'null').", + "value": "null" + } + }, + "scripts": { + "postdeploy": "php artisan migrate" + } +}