Added app.json for heroku

This commit is contained in:
GrimZZZ-404 2021-11-01 18:19:48 +05:30 committed by GitHub
parent 2575cbfc11
commit a1ab45a418
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
app.json Normal file
View File

@ -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": "/"
}