2019-10-12 02:44:15 +02:00
|
|
|
## Description:
|
2020-03-18 17:36:54 +01:00
|
|
|
**Related issue (if applicable):** #<!--apprise issue number goes here-->
|
2019-10-12 02:44:15 +02:00
|
|
|
|
2019-11-17 21:51:40 +01:00
|
|
|
<!-- Have anything else to describe? Define it here -->
|
|
|
|
|
2019-10-12 02:44:15 +02:00
|
|
|
## New Service Completion Status
|
|
|
|
<!-- This section is only applicable if you're adding a new service -->
|
2024-05-19 21:06:12 +02:00
|
|
|
* [ ] apprise/plugins/<!--new plugin name -->.py
|
2022-05-30 04:19:29 +02:00
|
|
|
* [ ] KEYWORDS
|
|
|
|
- add new service into this file (alphabetically).
|
2019-10-12 02:44:15 +02:00
|
|
|
* [ ] README.md
|
|
|
|
- add entry for new service to table (as a quick reference)
|
|
|
|
* [ ] packaging/redhat/python-apprise.spec
|
|
|
|
- add new service into the `%global common_description`
|
|
|
|
|
|
|
|
## Checklist
|
|
|
|
<!-- The following must be completed or your PR can't be merged -->
|
|
|
|
* [ ] The code change is tested and works locally.
|
|
|
|
* [ ] There is no commented out code in this PR.
|
|
|
|
* [ ] No lint errors (use `flake8`)
|
|
|
|
* [ ] 100% test coverage
|
2022-05-11 17:09:50 +02:00
|
|
|
|
|
|
|
## Testing
|
|
|
|
<!-- If this your code is testable by other users of the program
|
|
|
|
it would be really helpful to define this here -->
|
|
|
|
Anyone can help test this source code as follows:
|
|
|
|
```bash
|
|
|
|
# Create a virtual environment to work in as follows:
|
|
|
|
python3 -m venv apprise
|
|
|
|
|
|
|
|
# Change into our new directory
|
|
|
|
cd apprise
|
|
|
|
|
|
|
|
# Activate our virtual environment
|
|
|
|
source bin/activate
|
|
|
|
|
|
|
|
# Install the branch
|
|
|
|
pip install git+https://github.com/caronc/apprise.git@<this.branch-name>
|
|
|
|
|
2022-05-30 04:19:29 +02:00
|
|
|
# Test out the changes with the following command:
|
2022-05-11 17:09:50 +02:00
|
|
|
apprise -t "Test Title" -b "Test Message" \
|
|
|
|
<apprise url related to ticket>
|
|
|
|
|
|
|
|
```
|
|
|
|
|