Skip to content

Commit 78e18ae

Browse files
authored
Introduce Apprise Support
1 parent c657404 commit 78e18ae

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

script-config.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,33 @@ CHECK_UPDATES=1
2525
# When enabled, enter your Healthchecks UUID (not the full URL).
2626
# If using a self-hosted instance, change the URL to your endpoint
2727
# including the trailing slash.
28+
# HINT: If you selfhost Healthcheks.io, you can directly integrate it
29+
# with Apprise using its GUI
2830
HEALTHCHECKS=0
2931
HEALTHCHECKS_ID="your-uuid-here"
3032
HEALTHCHECKS_URL="https://hc-ping.com/"
3133

34+
# Apprise can send a notification to almost all of the most popular
35+
# notification services available to us today such as:
36+
# Telegram, Discord, Slack, Amazon SNS, Gotify, etc.
37+
# It can be used as an evolution of Hook Notification, which will be
38+
# dismissed in the future, eventually.
39+
# Set APPRISE to 1 to enable, 0 to disable.
40+
# Set APPRISE_URL according to the service you want to invoke.
41+
# Set APPRISE_ATTACH to get the report attached to the notification if a
42+
# warning is issued. Not all services support this option.
43+
# Change APPRISE_BIN only if needed.
44+
# Apprise documentation and URL examples can be found here:
45+
# https://github.com/caronc/apprise
46+
# You can use multiple Apprise URLS separated by spaces.
47+
# Example with Discord and Telegram:
48+
# APPRISE_URL="discord://<your-webook-url> tgram://<your-bot-token-here>/<your-chat-id-here>"
49+
APPRISE=0
50+
APPRISE_URL=""
51+
APPRISE_ATTACH=0
52+
53+
APPRISE_BIN="$(command -v apprise)"
54+
3255
# Use Telegram to report script execution summary (not the whole report)
3356
# Set 1 to enable. Create a bot using @botfather, then copy the API token.
3457
# To get your chat ID, use @getidsbot

0 commit comments

Comments
 (0)