From dbd29ca58a06d85c2a5c5e1982f8889050cf221f Mon Sep 17 00:00:00 2001 From: xbgmsharp Date: Fri, 2 Dec 2022 11:50:33 +0100 Subject: [PATCH] Add new variable PGSAIL_PUSHOVER_APP_URL --- .env.example | 2 ++ initdb/99env.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/.env.example b/.env.example index ff3cee9..34c1471 100644 --- a/.env.example +++ b/.env.example @@ -1,6 +1,7 @@ # POSTGRESQL ENV Settings POSTGRES_USER=username POSTGRES_PASSWORD=password +POSTGRES_DB=postgres # PostgSail ENV Settings PGSAIL_AUTHENTICATOR_PASSWORD=password PGSAIL_GRAFANA_PASSWORD=password @@ -9,6 +10,7 @@ PGSAIL_EMAIL_SERVER=localhost #PGSAIL_EMAIL_USER= Comment if not use #PGSAIL_EMAIL_PASS= Comment if not use #PGSAIL_PUSHOVER_APP_TOKEN= Comment if not use +#PGSAIL_PUSHOVER_APP_URL= Comment if not use #PGSAIL_PGSAIL_TELEGRAM_BOT_TOKEN= Comment if not use PGSAIL_APP_URL=http://localhost # POSTGREST ENV Settings diff --git a/initdb/99env.sh b/initdb/99env.sh index 421efb0..91ae185 100755 --- a/initdb/99env.sh +++ b/initdb/99env.sh @@ -15,6 +15,7 @@ INSERT INTO app_settings (name, value) VALUES ('app.email_pass', '${PGSAIL_EMAIL_PASS}'), ('app.email_from', '${PGSAIL_EMAIL_FROM}'), ('app.pushover_app_token', '${PGSAIL_PUSHOVER_APP_TOKEN}'), + ('app.pushover_app_url', '${PGSAIL_PUSHOVER_APP_URL}'), ('app.telegram_bot_token', '${PGSAIL_TELEGRAM_BOT_TOKEN}'), ('app.url', '${PGSAIL_APP_URL}'), ('app.version', '${PGSAIL_VERSION}');