Updated config (markdown)

master
Chris Caron 2021-09-29 10:26:01 -04:00
parent 18bc2bf783
commit d7590a50ea
1 changed files with 4 additions and 4 deletions

@ -48,23 +48,23 @@ Here are some simple examples:
```bash ```bash
# The following will only send notifications to services that has the # The following will only send notifications to services that has the
# `tv` tag associated with it. # `tv` tag associated with it.
notify -b "Notify only Kodi's in house" --tag=tv apprise -b "Notify only Kodi's in house" --tag=tv
``` ```
You can also get your configuration from a web server: You can also get your configuration from a web server:
```bash ```bash
# website # website
notify --config=https://myserver/my/apprise/config -b "notify everything" apprise --config=https://myserver/my/apprise/config -b "notify everything"
# you can specify as many --config (-c) lines as you want to add more # you can specify as many --config (-c) lines as you want to add more
# and more notification services to be handled: # and more notification services to be handled:
notify --config=https://myserver/my/apprise/config \ apprise --config=https://myserver/my/apprise/config \
--config=/a/path/on/the/local/pc -b "notify everything" --config=/a/path/on/the/local/pc -b "notify everything"
# Remember to tag everything because the most powerful feature is to # Remember to tag everything because the most powerful feature is to
# load all of your services but only trigger the specific ones you're # load all of your services but only trigger the specific ones you're
# interested in notifying: # interested in notifying:
notify --config=https://myserver/my/apprise/config \ apprise --config=https://myserver/my/apprise/config \
--config=/a/path/on/the/local/pc \ --config=/a/path/on/the/local/pc \
-b "notify urls tagged with my-admin-team only" \ -b "notify urls tagged with my-admin-team only" \
--tag=my-admin-team --tag=my-admin-team