mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
Merge pull request #3495 from maledorak/docs/remote-notifications
docs: Add remote notifications docs
This commit is contained in:
commit
e638116a2f
1 changed files with 24 additions and 0 deletions
|
@ -44,6 +44,30 @@ For example, on macOS you might use:
|
|||
aider --notifications-command "say 'Aider is ready'"
|
||||
```
|
||||
|
||||
### Remote Notifications
|
||||
|
||||
For remote notifications you can use [Apprise](https://github.com/caronc/apprise)
|
||||
|
||||
It's a cross-platform Python library for sending notifications to various services.
|
||||
|
||||
We can use Apprise to send notifications to Slack
|
||||
|
||||
```bash
|
||||
aider --notifications-command "apprise -b 'Aider is ready' 'slack://your-slack-webhook-token'"
|
||||
```
|
||||
|
||||
or Discord
|
||||
```bash
|
||||
aider --notifications-command "apprise -b 'Aider is ready' 'discord://your-discord-webhook-token'"
|
||||
```
|
||||
|
||||
or even to your phone via Pushbullet
|
||||
```bash
|
||||
aider --notifications-command "apprise -b 'Aider is ready' 'pbul://your-pushbullet-access-token'"
|
||||
```
|
||||
|
||||
Check more how to use and configure Apprise on their GitHub page.
|
||||
|
||||
## Configuration
|
||||
|
||||
You can add these settings to your configuration file:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue