apprise/CONTRIBUTING.md

130 lines
2.6 KiB
Markdown

# ๐Ÿค Contributing to Apprise
Thank you for your interest in contributing to Apprise!
We welcome bug reports, feature requests, documentation improvements, and new
notification plugins. Please follow the guidelines below to help us review and
merge your contributions smoothly.
---
## โœ… Quick Checklist Before You Submit
- โœ”๏ธ Your code passes all lint checks:
```bash
tox -e lint
```
- โœ”๏ธ Your changes are covered by tests:
```bash
tox -e qa
```
- โœ”๏ธ Your code is clean and consistently formatted:
```bash
tox -e format
```
- โœ”๏ธ You followed the plugin template (if adding a new plugin).
- โœ”๏ธ You included inline docstrings and respected the BSD 2-Clause license.
- โœ”๏ธ Your commit message is descriptive.
---
## ๐Ÿ“ฆ Local Development Setup
To get started with development:
### ๐Ÿงฐ System Requirements
- Python >= 3.9
- `pip`
- `git`
- Optional: `VS Code` with the Python extension
### ๐Ÿš€ One-Time Setup
```bash
git clone https://github.com/caronc/apprise.git
cd apprise
# Install all runtime + dev dependencies
pip install .[dev]
```
(Optional, but recommended if actively developing):
```bash
pip install -e .[dev]
```
---
## ๐Ÿงช Running Tests
```bash
pytest # Run all tests
pytest tests/foo.py # Run a specific test file
```
Run with coverage:
```bash
pytest --cov=apprise --cov-report=term
```
---
## ๐Ÿงน Linting & Formatting with ruff
```bash
ruff check apprise tests # Check linting
ruff check apprise tests --fix # Auto-fix
ruff format apprise tests # Format files
```
---
## ๐Ÿงฐ Optional: Using VS Code
1. Open the repo: `code .`
2. Press `Ctrl+Shift+P โ†’ Python: Select Interpreter`
3. Choose the same interpreter you used for `pip install .[dev]`
4. Press `Ctrl+Shift+P โ†’ Python: Discover Tests`
`.vscode/settings.json` is pre-configured with:
- pytest as the test runner
- ruff for linting
- PYTHONPATH set to project root
No `.venv` is required unless you choose to use one.
---
## ๐Ÿ“Œ How to Contribute
1. **Fork the repository** and create a new branch.
2. Make your changes.
3. Run the checks listed above.
4. Submit a pull request (PR) to the `main` branch.
GitHub Actions will run tests and lint checks on your PR automatically.
---
## ๐Ÿงช Need Help with Testing or Plugins?
See [DEVELOPMENT.md](./DEVELOPMENT.md) for:
- Full setup instructions
- Tox environment descriptions
- RPM testing
- Plugin development guidance
---
## ๐Ÿ™ Thank You
Your contributions make Apprise better for everyone โ€” thank you!
๐Ÿ“ See [ACKNOWLEDGEMENTS.md](./ACKNOWLEDGEMENTS.md) for a list of contributors.