From 334aeaa5c7f46e3f65e09ae73b8e9a3d09a3d735 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 29 Sep 2021 10:27:40 -0400 Subject: [PATCH] Updated config (markdown) --- config.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.md b/config.md index fccb0c4..f7759a7 100644 --- a/config.md +++ b/config.md @@ -48,23 +48,23 @@ Here are some simple examples: ```bash # The following will only send notifications to services that has the # `tv` tag associated with it. -apprise -b "Notify only Kodi's in house" --tag=tv +apprise -vvv -b "Notify only Kodi's in house" --tag=tv ``` You can also get your configuration from a web server: ```bash # website -apprise --config=https://myserver/my/apprise/config -b "notify everything" +apprise -vvv --config=https://myserver/my/apprise/config -b "notify everything" # you can specify as many --config (-c) lines as you want to add more # and more notification services to be handled: -apprise --config=https://myserver/my/apprise/config \ +apprise -vvv --config=https://myserver/my/apprise/config \ --config=/a/path/on/the/local/pc -b "notify everything" # Remember to tag everything because the most powerful feature is to # load all of your services but only trigger the specific ones you're # interested in notifying: -apprise --config=https://myserver/my/apprise/config \ +apprise -vvv --config=https://myserver/my/apprise/config \ --config=/a/path/on/the/local/pc \ -b "notify urls tagged with my-admin-team only" \ --tag=my-admin-team