From a1ab45a4180b9c581932745af11fbe98f6bd07e8 Mon Sep 17 00:00:00 2001 From: GrimZZZ-404 <80148839+GrimZZZ-404@users.noreply.github.com> Date: Mon, 1 Nov 2021 18:19:48 +0530 Subject: [PATCH] Added app.json for heroku --- app.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 00000000..a27dc6fe --- /dev/null +++ b/app.json @@ -0,0 +1,26 @@ +{ + "name": "Umami", + "description": "Umami is a simple, fast, website analytics alternative to Google Analytics.", + "keywords": [ + "analytics", + "charts", + "statistics", + "web-analytics" + ], + "website": "https://umami.is", + "repository": "https://github.com/mikecao/umami", + "addons": [ + "heroku-postgresql" + ], + "env": { + "HASH_SALT": { + "description": "Used to generate unique values for your installation", + "required": true, + "generator": "secret" + } + }, + "scripts": { + "postdeploy": "psql $DATABASE_URL -f sql/schema.postgresql.sql" + }, + "success_url": "/" +}