Updated config (markdown)

Chris Caron 2021-09-29 10:27:40 -04:00
parent d7590a50ea
commit 334aeaa5c7

@ -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